其他分享
首页 > 其他分享> > vuex模块化开发

vuex模块化开发

作者:互联网

        

 小仓库代码

//state 存数据的地方
const state = {
	a:1
};
//mutations 修改state的唯一手段
const mutations = { 
	
};
//action 处理action 书写逻辑的地方
const actions ={
	//这里修改业务逻辑 不可修改state
}
//getter 理解为计算属性
const getters = {
	
}

//暴露出去
export default{
	state,
	mutations,
	actions,
	getters
}

index.js集合的代码

import Vue from "vue"
import Vuex from 'vuex'
//使用插件 使其生效
Vue.use(Vuex);

//引入小仓库
import home from './home';
import search from './search';
//对外暴露
export default new Vuex.Store({
	//实现vuex模块化
	modules:{
		home,
		search
	}
})

 

标签:search,const,模块化,mutations,state,开发,home,import,vuex
来源: https://blog.csdn.net/weixinmingwo/article/details/123038077