会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
卑面派对
博客园
首页
新随笔
联系
订阅
管理
1
2
3
4
5
···
8
下一页
2025年2月26日
TS(2307): 找不到模块“***.vue”或其相应的声明。
摘要: 场景一 解决方案:在src根目录新建env.d.ts文件 declare module '*.vue' { import type { DefineComponent } from 'vue'; const vueComponent: DefineComponent<{}, {}, any>; ex
阅读全文
posted @ 2025-02-26 11:47 卑面派对
阅读(380)
评论(0)
推荐(0)
2024年10月31日
Sortablejs: sortable: cannot mount plugin xxx more than once
摘要: 解决方案: 在main.js 里引用插件,然后在组件内直接引用sortable. // main.js import Sortable, { Swap } from 'sortablejs' Sortable.mount(new Swap()) // 组件内 <script> import Sort
阅读全文
posted @ 2024-10-31 15:23 卑面派对
阅读(94)
评论(0)
推荐(0)
2024年6月27日
el-select下拉框 宽度自定义
摘要: 场景:因下拉项字数太多,会撑开下拉框宽度 解决办法:添加 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 卑面派对
阅读(1206)
评论(0)
推荐(1)
2024年6月26日
[eslint] Delete `CR` [prettier/prettier]
摘要: 解决方案:.eslintrc.js 中rules添加: "prettier/prettier": [ "error", { "endOfLine": "auto" } ] 参考的资料:Why do I keep getting Delete ‘cr’ [prettier/prettier]?
阅读全文
posted @ 2024-06-26 09:37 卑面派对
阅读(150)
评论(0)
推荐(0)
2024年5月16日
Git无法检测到文件名大小写的更改
摘要: 解决方案: git bash 执行命令 git config core.ignorecase false 关闭git忽略大小写配置,即可检测大小名称更改
阅读全文
posted @ 2024-05-16 10:22 卑面派对
阅读(147)
评论(0)
推荐(0)
2024年2月19日
图形化学习之SVG
摘要: MDN官方文档
阅读全文
posted @ 2024-02-19 14:29 卑面派对
阅读(8)
评论(0)
推荐(0)
2024年2月2日
Eslint: vue/no-unused-components
摘要: "vue/no-unused-components": "off"
阅读全文
posted @ 2024-02-02 15:47 卑面派对
阅读(45)
评论(0)
推荐(0)
2024年1月23日
npm install 认证过期
摘要: npm config set strict-ssl false
阅读全文
posted @ 2024-01-23 09:37 卑面派对
阅读(67)
评论(0)
推荐(0)
2023年11月17日
掘金更改头像
摘要: 掘金更改头像参考
阅读全文
posted @ 2023-11-17 16:36 卑面派对
阅读(13)
评论(0)
推荐(0)
2023年11月15日
win7系统安装Node.js 16(及更高)的办法
摘要: win7系统支持的最后Node版本是v12 win7系统安装更高版本 1、下载需要的版本,如:v16.14.0,注意需要下载zip包 2、关闭所有命令行,最好注销或重启电脑后在继续下面步骤 3、解压包,替换node路径 C:\Program Files\nodejs\,全部覆盖。或者解压后放到nvm
阅读全文
posted @ 2023-11-15 14:33 卑面派对
阅读(3638)
评论(0)
推荐(0)
1
2
3
4
5
···
8
下一页
公告