用$subscribe监听这个store 中的变更
store.$subscribe((mutation, state) => {
console.log(state.list);
})
mutation
:表示触发的变更state
:表示变更后的状态,变更发生后整个 store 的最新状态
有时候给数组添加或删除元素监听不到,可以用watch监听Pinia.store某一个数组变量
watch(() => watch.list.length, (newList) => {
console.log("list updated:", newList);
});
通过监听他的长度实现
Comments 7 条评论
博主 爱吃醋的饺子
好好好
博主 azhe
11+
博主 azhe
.
博主 azhe
1
博主 azhe
2
博主 azhe
博主 Mr.Xi