vue2.0中配置文件路径
Posted lingling144
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue2.0中配置文件路径相关的知识,希望对你有一定的参考价值。
在build/webpack.base.conf.js中添加一些代码即可
module.exports = {
resolve: {
extensions: [‘.js‘, ‘.vue‘, ‘.json‘],
alias: {
‘vue$‘: ‘vue/dist/vue.esm.js‘,
‘@‘: resolve(‘src‘),
‘components‘:path.resolve(__dirname,‘../src/components‘),
‘pages‘:path.resolve(__dirname,‘../src/pages‘),
}
},
在module.export中的resolve中添加:
‘components‘:path.resolve(__dirname,‘../src/components‘),
‘pages‘:path.resolve(__dirname,‘../src/pages‘),
以后在组件中写components代表的路径就是src/components文件夹.
以上是关于vue2.0中配置文件路径的主要内容,如果未能解决你的问题,请参考以下文章