随笔分类 -  vue日常填坑

vue开发中遇到的问题
摘要:安装vue-svg-pan-zoom 组件 方式1、执行 npm install --save vue-svg-pan-zoom 方式2、执行 cnpm install vue-svg-pan-zoom 2.页面代码 <template> <div> <SvgPanZoom class="" sty 阅读全文
posted @ 2022-07-08 14:37 忒想进步 阅读(1041) 评论(1) 推荐(0)
摘要:运行vue项目时,报如下错误: * ./cptable in ./node_modules/xlsx-style/dist/cpexcel.js 出现上述原因是因为Excel文件导出时所用的xlsx-style库错误所导致的, 1、这是需要改安装依赖的文件内容,根据提示找到该js文件在807行做修改 阅读全文
posted @ 2022-04-27 10:57 忒想进步 阅读(3499) 评论(0) 推荐(0)
摘要://回车键登录 keyDown() { var _self = this; document.onkeydown = function (e) { console.log(e); var key = window.event.keyCode; if (key == 13 || key == 100) 阅读全文
posted @ 2022-04-25 09:31 忒想进步 阅读(754) 评论(0) 推荐(0)