vue2 小型状态管理器

大型项目中的数据状态会比较复杂,一般都会使用 vueX 来管理。但在一些小型项目或状态简单的项目中,为了管理几个状态而引入一个库,显得有些笨重。
在 2.6.0+ 版本中,新增的 Vue.observable 可以帮助我们解决这个尴尬的问题,它能让一个对象变成响应式数据

建立store文件:

vue 小型状态管理器

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Vue from 'vue'

export const state = Vue.observable({
count: 0
})

export const mutations = {
SET_COUNT(number) {
if (number > 0) {
state.count = number
}
}
}

使用:

vue 小型状态管理器

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 <div>
{{ count }}
<el-button @click="setCount"></el-button>
</div>

<script>
import { state, mutations } from "@/store";

export default {
computed: {
count() {
return state.count;
},
},
methods: {
setCount() {
mutations.SET_COUNT(100);
},
}
}
</script>

vue2 小型状态管理器
https://github.com/chergn/chergn.github.io/e51040e89578/
作者
全易
发布于
2024年3月28日
许可协议