2019-07-25 IDEA 配置Vue alias(别名)、
2019-07-25 本文已影响0人
烟雨枯
alias 配置
添加 alias.config.js 文件
const path = require('path')
module.exports = {
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
'_c': path.resolve(__dirname, 'src/components'),
}
}
}