vuex store 创建方法参数
this.$store.commit('方法名称',参数) 存储
获取
computed: {
searchResult() {
return this.$store.getters.searchResult;
}
},
监听
watch: {
searchResult: function(start, end) {
console.log(start);
this.getProductListByName(start);
}
},
网友评论