8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import { defineStore } from 'pinia'
|
|
|
|
export const useMyPlacesStore = defineStore({
|
|
id: 'myPlacesStore',
|
|
state: () => ({ places:null }),
|
|
actions: {}
|
|
})
|