一、ide不能解析vue文件
刚开始导入时,在vscode中的vue文件中内容都是灰色的
ide不能解析vue解决方法:
1.idea或webstorm安装vue.js插件
2.在vscode中
- vue2.0的项目安装vetur插件
- vue3.0及以上的项目安装Vue-official插件(之前是Volar)
vue官方推荐:搭配 TypeScript 使用 Vue | Vue.js (vuejs.org)
二、ts文件不能解析.vue
Could not find a declaration file for module '../views/Index.vue'. 'd:/project/panda/src/views/Index.vue' implicitly has an 'any' type.
ts不能解析*.vue解决办法:
方式一、在tsconfig.json中配置 "compilerOptions": {.... "allowJs": true, }
方式二、找到vite-env.d.ts文件或者env.d.ts文件,添加如下代码
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » idea或vscode支持vue语法,ts可解析*.vue
发表评论 取消回复