1.vuex原理
store是vuex的核心方法,
var store = new vuex.Store({
state: {
//存放共享数据
age: 18,
num: 10,
},
mutations: {
//只能是同步方法
//更改state中的数据,
// mutations下的函数接收state作为第一参数
change:function(state,a){
// state.num++;
console.log(state.num += a);
}
},
getters: {
//筛选,过滤state中的数据。
//接收state作为第一参数,
getAge:function(state){
return state.age;
}
},
})
computed: { //一般在计算属性中监控数据变化,一旦发生变化就会响应
age:function(){
return this.KaTeX parse error: Expected 'EOF', got '}' at position 29: …ge }̲, a…store.getters.getAge
}
},
2.双向数据绑定原理
3.生命周期,created可不可以操作dom
vue
最新推荐文章于 2023-06-08 22:07:49 发布