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