脱离 React/Vue 情况下使用 Zustand/Zustand-vue
zustand/zustand-vue
核心可以在没有React / Vue
依赖的情况下导入和使用。唯一的区别是 create
函数不再返回钩子,而是返回 API
。
import { createStore } from 'zustand-vue'
// import { createStore } from 'zustand/vanilla'
const store = createStore(() => ({ ... }))
const { getState, setState, subscribe } = store
export default store