上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: //浏览器种显示源码 打开 config/index.js 并找到 devtool property。将其更新为: 如果你使用的是 Vue CLI 2,请设置并更新 config/index.js 内的 devtool property: devtool: 'source-map', 如果你使用的是 阅读全文
posted @ 2021-06-08 20:25 coffeemil 阅读(207) 评论(0) 推荐(0)
摘要: App.vue //cache缓存永久缓存的变量 <script> export default { name: "App", created() { this.persisted(); }, methods: {//持久化 persisted() { if (sessionStorage.getI 阅读全文
posted @ 2021-06-08 01:54 coffeemil 阅读(86) 评论(0) 推荐(0)
摘要: store/modules/cache.js import { listData } from '@/api/system/dict/data.js' const state = { dictCache: {}, } const mutations = { UPDATE_DICTS(state, p 阅读全文
posted @ 2021-06-08 01:24 coffeemil 阅读(952) 评论(0) 推荐(0)
摘要: 1.设置淘宝镜像 npm config set registry http://registry.npm.taobao.org/ 还原npm镜像 npm config set registry https://registry.npmjs.org/ 阅读全文
posted @ 2021-06-06 17:16 coffeemil 阅读(56) 评论(0) 推荐(0)
摘要: 1.Chinese (Simplified) Language Pack for Visual Studio Code //中文汉化 2.JS-CSS-HTML Formatter //格式化插件 Ctrl+Shit+P 选择 Configure Display Language zh-cn 3.v 阅读全文
posted @ 2021-06-05 23:45 coffeemil 阅读(97) 评论(0) 推荐(0)
摘要: 效果图 单击之后出现编辑效果 部分实现代码 <template> <div @mousedown="editCtrl(currentEditRow, '')" <el-table :data="dataSet1" border size="mini" :summary-method="getSumm 阅读全文
posted @ 2021-05-24 00:20 coffeemil 阅读(507) 评论(0) 推荐(0)
摘要: [vue-pdf] npm连接:https://www.npmjs.com/package/vue-pdf 安装vue-pdf npm i vue-pdf 1.解决字体问题 将node_modules/pdfjs-dist/cmaps文件夹复制到public文件夹下 (找不到的可以看下代码怎么写的, 阅读全文
posted @ 2021-05-16 04:39 coffeemil 阅读(931) 评论(0) 推荐(0)
摘要: Character Entities 显示说明实体名称实体编号 半方大的空白 &ensp; &#8194; 全方大的空白 &emsp; &#8195; 不断行的空白格 &nbsp; &#160; < 小于 &lt; &#60; > 大于 &gt; &#62; & &符号 &amp; &#38; " 阅读全文
posted @ 2021-04-26 16:17 coffeemil 阅读(75) 评论(0) 推荐(0)
摘要: aaa=[{a1:1,a2:''},{a1:2,a2:''},{a1:3,a2:''},{a1:4,a2:''}] //所有数据列表 bbb=[{a1:1,a2:''}] //右侧列表 ccc=[{a1:2,a2:''},{a1:2,a2:''},{a1:1,a2:''},{a1:2,a2:''}] 阅读全文
posted @ 2021-04-26 11:42 coffeemil 阅读(215) 评论(0) 推荐(0)
摘要: /** 通用滚动条样式*/ ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-thumb { background-color: #e5e5e5; } ::-webkit-scrollbar-thumb:hove 阅读全文
posted @ 2021-04-26 11:15 coffeemil 阅读(1321) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 下一页