withSnapshot

提示

此增强器已经在 create/createVanilla 中内置了,你可以直接通过它们创建带有 snapshot 方法的 store

store 贡献 store.snapshot() 方法,获取当前 store 的快照数据。

import { createVanilla } from '@shined/reactive'

const store = createVanilla({ count: 0 })

// 已经内置了,直接使用 snapshot 方法获取 store 的快照数据
const { count } = store.snapshot()