小白兔晒黑了

导航

 

给路径起别名

在根目录添加vue.config.js文件

module.exports = {
  configureWebpack: {
    resolve: {
      alias: {
        'assets': '@/assets',
        'common': '@/common',
        'components': '@/components',
        'network': '@/network',
        'views': '@/views',
      }
    }
  }
}

 .editorconfig

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

 

posted on 2020-07-10 20:32  小白兔晒黑了  阅读(242)  评论(0编辑  收藏  举报