import { defineStore } from 'pinia'; export const globalStore = defineStore('global', { state: () => { return { isLogin:false,//登录状态 }; }, getters: { }, actions: { }, });