上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: Snipaste-1.16.2-x64 官网链接:https://zh.snipaste.com/index.html?utm_source=cyhour.com 阅读全文
posted @ 2022-02-18 10:01 王二疯 阅读(216) 评论(0) 推荐(0) 编辑
摘要: #方法一:利用webpack将打包的文件名都带上时间戳 ##在index.html中加入: <meta http-equiv="pragram" content="no-cache"> <meta http-equiv="cache-control" content="no-cache, no-st 阅读全文
posted @ 2022-02-18 09:40 王二疯 阅读(427) 评论(0) 推荐(0) 编辑
摘要: #下载安装elementUI cnpm install element-ui -S ##全局引入 main.js // 不管是全部引入还是按需引入 ,css样式还是需要全部引入的 import "element-ui/lib/theme-chalk/index.css"; import Elemen 阅读全文
posted @ 2022-02-16 09:20 王二疯 阅读(1817) 评论(0) 推荐(0) 编辑
摘要: #Element UI (饿了么) 中 el-popover 手动关闭 el-popover弹出框 关闭和打开分别用 doClose() 和 doShow() 方法 Element UI文档中没有提到这两个方法 ##一般情况下: <el-popover ref="popoverRef" placem 阅读全文
posted @ 2022-01-24 16:46 王二疯 阅读(5809) 评论(0) 推荐(0) 编辑
摘要: #Vue中组件之间传值 props类型及默认值 ##写法: props: { demoString: { type: String, default: '' }, demoNumber: { type: Number, default: 0 }, demoBoolean: { type: Boole 阅读全文
posted @ 2022-01-24 16:21 王二疯 阅读(868) 评论(0) 推荐(0) 编辑
摘要: #实现 sessionStorage 的监听 在main.js中 挂载resetSetStorageEvent()方法到vue原型链上 两个参数 : key指的是:sessionStorage中需要监听的键名 newVal指的是:sessionStorage中需要监听的键值 Vue.prototyp 阅读全文
posted @ 2022-01-24 15:57 王二疯 阅读(574) 评论(0) 推荐(0) 编辑
摘要: #基于uni-app的通用搜索组件(历史记录,app语音输入,搜索推荐)解析 zy-search ##一个通用的搜索组件,包含搜索历史记录,语音输入,搜索推荐功能 插件地址:https://ext.dcloud.net.cn/plugin?id=512 ##插件内容: <template name= 阅读全文
posted @ 2021-12-31 10:42 王二疯 阅读(951) 评论(0) 推荐(0) 编辑
摘要: #对console对象上的属性和方法的归纳 ##控制台打印: ##console对象上,5种用来显示信息的方法: console.log("这是console.log"); console.info("这是console.info"); console.debug("这是console.debug" 阅读全文
posted @ 2021-12-30 15:49 王二疯 阅读(253) 评论(0) 推荐(0) 编辑
摘要: #nprogress 路由跳转(页面加载)进度条 VUE插件 ##安装 NPM: npm install --save nprogress Yarn: yarn add nprogress 或者去下载:https://ricostacruz.com/nprogress/ 然后直接引用: <scrip 阅读全文
posted @ 2021-12-30 14:52 王二疯 阅读(188) 评论(0) 推荐(0) 编辑
摘要: #vuex 刷新页面时数据丢失问题 ##解决方案 当监听到有刷新页面操作的时候,将vuex中的详细保存到sessionStorage中,在created钩子中判断sessionStorage中是否有存储的vuex中的state的内容,有就重新覆盖原vuex中的state ##代码 app.vue页面 阅读全文
posted @ 2021-12-30 09:42 王二疯 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页