1、我在router.ts 里面引入 import Index from '@/views/index', VSCode 提示[ts] 找不到模块“@/views/index”。
vue.config.js也配置好了
const path = require('path');
function resolve (dir) {
return path.join(__dirname, dir)
}
module.exports = {
lintOnSave: true,
chainWebpack: (config)=>{
config.resolve.alias
.set('@', resolve('src'))
}
}
命令行也是提示错误
将
path.join
修改为path.resolve