8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
import { defineStore } from 'pinia'
|
|
|
|
export const useCategoriesStore = defineStore({
|
|
id: 'CategoriesStore',
|
|
state: () => ({ categories : null }),
|
|
actions: {}
|
|
})
|