12 2021 档案
摘要:#基于uni-app的通用搜索组件(历史记录,app语音输入,搜索推荐)解析 zy-search ##一个通用的搜索组件,包含搜索历史记录,语音输入,搜索推荐功能 插件地址:https://ext.dcloud.net.cn/plugin?id=512 ##插件内容: <template name=
阅读全文
摘要:#对console对象上的属性和方法的归纳 ##控制台打印: ##console对象上,5种用来显示信息的方法: console.log("这是console.log"); console.info("这是console.info"); console.debug("这是console.debug"
阅读全文
摘要:#nprogress 路由跳转(页面加载)进度条 VUE插件 ##安装 NPM: npm install --save nprogress Yarn: yarn add nprogress 或者去下载:https://ricostacruz.com/nprogress/ 然后直接引用: <scrip
阅读全文
摘要:#vuex 刷新页面时数据丢失问题 ##解决方案 当监听到有刷新页面操作的时候,将vuex中的详细保存到sessionStorage中,在created钩子中判断sessionStorage中是否有存储的vuex中的state的内容,有就重新覆盖原vuex中的state ##代码 app.vue页面
阅读全文
摘要:v-distpicker 的简单使用 移动端 ##npm安装 npm install v-distpicker --save ##注册组件 ###全局注册 import VDistpicker from 'v-distpicker'Vue.component('v-distpicker', VDis
阅读全文
摘要:#对地区选择插件 v-distpicker 的解析 ##vue html部分 <template> <div :class="wrapper"> <!-- 在非移动端的展示效果 --> <template v-if="type !== 'mobile'"> <!-- 省份的下拉选择框 --> <!-
阅读全文