UNPKG

@twotwoba/vv-cli

Version:

CLI tool for creating Vue3 or React19 template projects by vite

15 lines (11 loc) 263 B
import { create } from 'zustand' type state = { count: number } type action = { increment: () => void } export const useCountStore = create<state & action>((set) => ({ count: 0, increment: () => set((state) => ({ count: state.count + 1 })) }))