IntelliJ Idea开发Vue遇到的几个问题

IntelliJ Idea开发Vue遇到的几个问题

确保 idea已安装插件【Vue.js】

问题1:ts方法错误 或 提示导入 import xxx.vue标红

解决办法:在 env.d.ts中添加以下代码(若无此文件,重新创建):

/* eslint-disable */
declare module '*.vue' {
    import type { DefineComponent } from 'vue'
    const component: DefineComponent<{}, {}, any>
    export default component
}

问题2:xxx.vue文件中 import 下标有红色波浪线

解决办法:

  • 进入【setting -> Edit - > File Type -> HTML】中添加 [*.vue],重启生效。

你可能感兴趣的:(vue.js)