vue项目最基本配置,

vue项目按需导入模块,需安装babel插件
babel-plugin-syntax-dynamic-import

less-loader
element
axios
router
vuex

配置跨域
config/index.js
proxyTable: {
‘/api’:{
changeOrigin:true,
target:‘http://localhost:8989’
// pathRewrite:{
// ‘^/api’:‘http://localhost:8989’
// }
}
},

发布了24 篇原创文章 · 获赞 0 · 访问量 1099

猜你喜欢

转载自blog.csdn.net/shixueyan_fendou/article/details/105051188