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中配置文件路径的主要内容,如果未能解决你的问题,请参考以下文章

vue2.0 代码功能片段

vue相关文件说明(基于vue2.0)

vue2.0的变化

vue2.0集成百度UE编辑器,上传图片报错!!!

前端 高级 (二十五)vue2.0项目实战一 配置简要说明代码简要说明Import/Export轮播和列表例子

vue2.0有哪些变化