使用的是vue cli创建的项目。
1.安装 path
如果在 Node.js 环境中运行代码,path 模块默认是可用的,则不需要单独安装,否则输入下面命令安装path
npm i path -S
2.找到vue.config.js文件:
const { defineConfig } = require('@vue/cli-service') const path = require('path') module.exports = defineConfig({ transpileDependencies: true, configureWebpack: { resolve: { alias: { '@': path.resolve(__dirname, 'src') } } }, })