import { defineStore } from 'pinia';
export const useStore = defineStore('store', {
state: () => ({
data: null,
page: {},
user: null,
settings: null,
}),
actions: {
async update(val) {
this.data = val;
},
async updatePage(val) {
this.page = val;
},
},
});