mirror of
https://gitee.com/mirrors/AllinSSL.git
synced 2026-03-13 10:00:53 +08:00
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import { createPinia, defineStore, storeToRefs } from 'pinia'
|
|
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
|
|
|
|
// 创建pinia实例
|
|
const pinia = createPinia()
|
|
|
|
// 全局持久化
|
|
pinia.use(piniaPluginPersistedstate)
|
|
|
|
export { pinia, defineStore, storeToRefs }
|