index.ts 289 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 import { defineStore } from 'pinia'; export const mainStore = defineStore('main', { state: () => { return { msg: 'Hello world', count: 0, auth: false }; }, getters: {}, actions: { changeState (state: boolean) { this.auth = state; } }, });