组合式pinia的使用
# 组合式pinia的使用
# 如何定义store
import { defineStore } from 'pinia'
// defineStore(仓库的唯一标识,() => {....})
export const useCount defineStore('pinia', () => {
// 声明数据 state
const count = ref(0)
// 声明数据的操作方法 action(普通函数就是)
const addcount = () => {}
// 声明数据的计算属性getters(computed)
const num = computed(()=> {
})
// 要用要return 出去
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 在页面中使用
1
上次更新: 2023/08/29, 8:08:00