mirror of
https://github.com/hay-kot/homebox.git
synced 2025-10-04 05:11:01 +00:00
7 lines
123 B
TypeScript
7 lines
123 B
TypeScript
import { defineStore } from 'pinia';
|
|
|
|
export const useStore = defineStore('store', {
|
|
state: () => ({
|
|
count: 0,
|
|
}),
|
|
});
|