在vue中如何进行config配置(详细教程)
程序员文章站
2022-03-14 21:54:05
...
这篇文章主要介绍了vue中的config配置 ,本文给大家介绍的非常详细,具有参考借鉴价值,需要的朋友可以参考下
在webpack.base.conf文件中配置别名以及扩展名
resolve: { extensions: ['.js', '.vue', '.json', '.styl'], alias: { 'vue$': 'vue/dist/vue.esm.js', '@': resolve('src'), 'src': path.resolve(__dirname, '../src'), 'common': path.resolve(__dirname, '../src/common'), 'components': path.resolve(__dirname, '../src/components') } }
配置好别名和扩展名后,main.js就可以这样写
import Vue from 'vue'; import App from './App'; import Router from 'vue-router'; //components前面可以加上'@/',也可以省略不写 //如果没有别名,就要写成“import goods from '../components/goods/goods';“ import goods from 'components/goods/goods'; import seller from 'components/seller/seller'; import ratings from 'components/ratings/ratings'; import '@/common/stylus/index';
上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
以上就是在vue中如何进行config配置(详细教程)的详细内容,更多请关注其它相关文章!
推荐阅读
-
在vue中如何使用cropperjs的方法(详细教程)
-
vue-cli3中vue.config.js配置教程详解
-
vue-cli3中vue.config.js配置教程详解
-
springcloud config在Git端修改配置后,在不重启服务中如何让客户端生效
-
在Visual Studio Code中配置GO开发环境的详细教程
-
在IDEA2020.2中配置使用Git的详细教程
-
在vue中通过axios处理post请求传参的问题(详细教程)
-
在vue中如何使用cropperjs的方法(详细教程)
-
详细说明在vue2中使用axios解决http请求出现的问题(详细教程)
-
在vue中在线付费课程(详细教程)