UNPKG

aqsc-mobile-com

Version:

基于uni-ui实现的二次封装

20 lines (18 loc) 426 B
import { defineStore } from 'pinia' export const useUserStore = defineStore('user', { state: () => { return { lang: 'system', // 语言设置 system zh-Hans en skin: 'default', // 皮肤 } }, actions: { setLang(val) { this.lang = val }, setSkin(val) { this.skin = val }, }, unistorage: true, // 开启后对 state 的数据读写都将持久化 })