nuxt-start/stores/places.ts
2025-01-01 11:15:54 +01:00

8 lines
157 B
TypeScript

import { defineStore } from 'pinia'
export const useMyPlacesStore = defineStore({
id: 'myPlacesStore',
state: () => ({ places:null }),
actions: {}
})