// 实例化vuex状态库
var vuexStore = new Vuex.Store({
state:{
message:'Hello World',
bookList:[
{
name:'javascript权威指南',
price:100,
en:'jq'
},
{
name:'angularjs权威指南',
price:80,
en:'aq'
},
{
name:'HTTP权威指南',
price:50,
en:'hq'
}
]
},
mutations:{
//同步
showMessage:function(state,data){
state.message = 'Store mutations changed this words。'+data;
}
addBook:function(state,data){
state.bookList.push(data)
}
},
getters:{
filterPrice:function(state){
var narr = [];
for(var i = 0;i<state.bookList.length;i++){
state.bookList[i].price<85 ? narr.push(state.bookList[i]) : null;
}
return narr;
}
},
actions:{
//异步操作
addBook:function(context){
setTimeout(function(){
context.commit('addBook',{name:'HTML5权威指南',price:75});
},2000);
}
},
modules:{
a:storeA,b:storeB
}
});
// vue 实例
var vm = new Vue({
el:'app',
store:VuexStore,
methods:{
showMessage:function(){
this.$store.commit('showMessage','荷载数据')
},
filterList:function(){
return this.store.getters.filterPrice();
},
addBooks:function(){
this.$store.dispatch('addBook')
},
}
});
var store = new VuexStore({
state:{
} ,
mountations:{
},
})
var vm = new Vue({
el:'#app',
store:store
})
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有