本文介绍了基于vue-cli的vuex配置,分享给大家,希望对大家有帮助
首先成功运行vue-cli项目
安装vuex
store
新建文件夹store(与router同级)然后在store目录下新建index.js
Vue.use(Vuex);
export default new Vuex.Store({
strict: process.env.NODE_ENV !== 'production',modules: {
export default new Vuex.Store({
strict: process.env.NODE_ENV !== 'production',modules: {
},getters: {
},actions: {
},});
main.js
Vue.config.productionTip = false
/ eslint-disable no-new /
new Vue({
router,store
}).$mount('#app')
/ eslint-disable no-new /
new Vue({
router,store
}).$mount('#app')
index.html
上面对main.js和index.html做了修改。主要是符合个人的用法,这样的好处是根组件只有index.html(如果可以理解为组件),而不是有app.vue和index.html两个。
直观上来看可能这样就会出现每个组件都要引一个导航栏的问题,这样可能不太好。但是从过往的开发经验来看,如果在app.vue中定义了导航栏,那么相应的在app.vue中就要加入相应的业务逻辑,网站规模大了之后app.vue的业务逻辑会越来越多,不利于管理。(所以这里app.vue就可以删除了)
原文链接:https://www.f2er.com/vue/37614.html