store.ts import { InjectionKey } from 'vue' import { createStore, Store } from 'vuex' //定义商店状态的类型 export interface State { count: number } //定义 ...
確定! 回上一頁