无存储操作的实践
推荐的用法是将操作和状态放在存储中(让你的操作和你的状态放在一起)。
例如:
export const useBoundStore = create((set) => ({
count: 0,
text: 'hello',
inc: () => set((state) => ({ count: state.count + 1 })),
setText: (text) => set({ text }),
}))
推荐的用法是将操作和状态放在存储中(让你的操作和你的状态放在一起)。
例如:
export const useBoundStore = create((set) => ({
count: 0,
text: 'hello',
inc: () => set((state) => ({ count: state.count + 1 })),
setText: (text) => set({ text }),
}))