2023年6月21日
摘要: 1、存储数据 localStorage.setItem('name', '张三') 2、调取数据 localStorage.getItem('name') 3、存储对象数据时需要用JSON.stringify()转换后再存储,调取时需要用JSON.parse()转换后在使用 存对象Obj const 阅读全文
posted @ 2023-06-21 16:30 好大的虫子 阅读(36) 评论(0) 推荐(0) 编辑
  2023年5月16日
摘要: 1、安装插件:npm install v-viewer --save 2、安装完成,在需要的页面或main.js 中引入配置文件: import Vue from 'vue'; import Viewer from 'v-viewer' import 'viewerjs/dist/viewer.cs 阅读全文
posted @ 2023-05-16 10:51 好大的虫子 阅读(96) 评论(0) 推荐(0) 编辑
  2023年4月25日
摘要: 1、若项目用vue init webpack appdemo 创建的解决跨域问题如下 在config文件夹的index.js文件里proxyTable{}中添加以下代码即可: proxyTable: { '/api': { //本地服务接口地址 target: 'http://....', ws: 阅读全文
posted @ 2023-04-25 17:02 好大的虫子 阅读(68) 评论(0) 推荐(0) 编辑
  2023年4月24日
摘要: 1、安装插件 npm i pdfh5 2、在页面内引入组件 import Pdfh5 from "pdfh5";import "pdfh5/css/pdfh5.css"; 3、写一个展示pdf文件的容器 <div id="pdfType"></div> 4、封装在事件中 initPdf() { th 阅读全文
posted @ 2023-04-24 12:07 好大的虫子 阅读(3871) 评论(0) 推荐(0) 编辑
  2023年4月23日
摘要: 1、安装组件 npm install qrcodejs2 --save 2、在页面引用组件 import QRCode from "qrcodejs2"; 3、在页面创建一个存放二维码的区域 <div id="qrcode" ref="qrcode"></div> 4,事件中调用 handlePri 阅读全文
posted @ 2023-04-23 17:26 好大的虫子 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 在el-table标签上加上以下代码即可为表头和表格设置统一对齐方式和样式 :header-cell-style="{ 'text-align': 'center', 'background': '#f7f8fa' }" :cell-style="{ 'text-align': 'center' } 阅读全文
posted @ 2023-04-23 17:10 好大的虫子 阅读(1829) 评论(0) 推荐(0) 编辑
摘要: 1、在echarts内写上(此为点击有数据的单项柱子实体) myChart.off('click') //防止多次触发,在给ehcart绑定事件时,要先写上此代码。 myChart.on('click', (params) => { //在此处编写内容 console.log(params) }) 阅读全文
posted @ 2023-04-23 15:59 好大的虫子 阅读(916) 评论(0) 推荐(0) 编辑
摘要: 1、在组件上写上自定义事件的名称 v-el-table-tableLazy="tableLazy" 或 v-el-select-selectLazy="selectLazy" 2、在export default 内上自定义事件指令 directives: { "el-select-selectLaz 阅读全文
posted @ 2023-04-23 15:51 好大的虫子 阅读(313) 评论(0) 推荐(0) 编辑
  2023年3月27日
摘要: 在根目录新建一个文件.gitignore文件 在文件内写上不需要提交的文件名称保存后即可 阅读全文
posted @ 2023-03-27 18:03 好大的虫子 阅读(352) 评论(0) 推荐(0) 编辑
  2023年2月16日
摘要: 1、在事件中加个.native即可解决: @click.native="dialogVisible = true" 阅读全文
posted @ 2023-02-16 19:33 好大的虫子 阅读(1167) 评论(0) 推荐(1) 编辑