对于以下代码行App.vue
import TestComponent from '@/mytest/components/TestComponent.vue'
Vscode,特别是 vetur 插件,给出了错误cannot find module @/mytest/components/TestComponent.vue
我检查了我的 tsconfig.json 文件,我的别名设置正确,如下所示:
"paths": {
"@/*": [
"src/*"
]
},
我的组件的路径是:src/mytest/components/TestComponent.vue
代码编译并运行得很好,是 Vscode 给了我这些错误。
我怎样才能解决这个问题?