摘要:
解决方案: 在main.js 里引用插件,然后在组件内直接引用sortable. // main.js import Sortable, { Swap } from 'sortablejs' Sortable.mount(new Swap()) // 组件内 <script> import Sort 阅读全文
摘要:
场景:因下拉项字数太多,会撑开下拉框宽度 解决办法:添加 popper-class 设置 width: 0 并给 el-option 添加 title属性 <el-select v-model="form.caseId" popper-class="test-case-select-option" 阅读全文
摘要:
解决方案:.eslintrc.js 中rules添加: "prettier/prettier": [ "error", { "endOfLine": "auto" } ] 参考的资料:Why do I keep getting Delete ‘cr’ [prettier/prettier]? 阅读全文
摘要:
解决方案: git bash 执行命令 git config core.ignorecase false 关闭git忽略大小写配置,即可检测大小名称更改 阅读全文
摘要:
"vue/no-unused-components": "off" 阅读全文
摘要:
npm config set strict-ssl false 阅读全文
摘要:
win7系统支持的最后Node版本是v12 win7系统安装更高版本 1、下载需要的版本,如:v16.14.0,注意需要下载zip包 2、关闭所有命令行,最好注销或重启电脑后在继续下面步骤 3、解压包,替换node路径 C:\Program Files\nodejs\,全部覆盖。或者解压后放到nvm 阅读全文
摘要:
1、报错 2、解决方案 .stylelintrc.js文件中配置declaration-block-trailing-semicolon, 将stylelint该条规则关闭。 { + 'declaration-block-trailing-semicolon': null } 阅读全文