赞
踩
在创建vue3+vite+ts的项目过程中,发现ts在引入文件时报红色波浪线
解决方法:
1.如果使用的vsCode中vue插件是Vetur的话,需要卸载重新安装支持vue3的Volar插件
2.需要在src目录下创建xxx.d.ts文件,添加以下代码
- declare module "*.vue" {
- import { DefineComponent } from "vue"
- const component: DefineComponent<{}, {}, any>
- export default component
- }
然后就可以看到红色波浪线没有了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。