摘要: 场景:因下拉项字数太多,会撑开下拉框宽度 解决办法:添加 popper-class 设置 width: 0 并给 el-option 添加 title属性 <el-select v-model="form.caseId" popper-class="test-case-select-option" 阅读全文
posted @ 2024-06-27 10:53 卑面派对 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 解决方案:.eslintrc.js 中rules添加: "prettier/prettier": [ "error", { "endOfLine": "auto" } ] 参考的资料:Why do I keep getting Delete ‘cr’ [prettier/prettier]? 阅读全文
posted @ 2024-06-26 09:37 卑面派对 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 解决方案: git bash 执行命令 git config core.ignorecase false 关闭git忽略大小写配置,即可检测大小名称更改 阅读全文
posted @ 2024-05-16 10:22 卑面派对 阅读(12) 评论(0) 推荐(0) 编辑
摘要: MDN官方文档 阅读全文
posted @ 2024-02-19 14:29 卑面派对 阅读(1) 评论(0) 推荐(0) 编辑
摘要: "vue/no-unused-components": "off" 阅读全文
posted @ 2024-02-02 15:47 卑面派对 阅读(9) 评论(0) 推荐(0) 编辑
摘要: npm config set strict-ssl false 阅读全文
posted @ 2024-01-23 09:37 卑面派对 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 掘金更改头像参考 阅读全文
posted @ 2023-11-17 16:36 卑面派对 阅读(7) 评论(0) 推荐(0) 编辑
摘要: win7系统支持的最后Node版本是v12 win7系统安装更高版本 1、下载需要的版本,如:v16.14.0,注意需要下载zip包 2、关闭所有命令行,最好注销或重启电脑后在继续下面步骤 3、解压包,替换node路径 C:\Program Files\nodejs\,全部覆盖。或者解压后放到nvm 阅读全文
posted @ 2023-11-15 14:33 卑面派对 阅读(1660) 评论(0) 推荐(0) 编辑
摘要: 1、报错 2、解决方案 .stylelintrc.js文件中配置declaration-block-trailing-semicolon, 将stylelint该条规则关闭。 { + 'declaration-block-trailing-semicolon': null } 阅读全文
posted @ 2023-11-02 14:34 卑面派对 阅读(241) 评论(0) 推荐(0) 编辑
摘要: tsconfig.json配置 { + "allowSyntheticDefaultImports": true } 阅读全文
posted @ 2023-11-02 10:20 卑面派对 阅读(52) 评论(0) 推荐(0) 编辑