dishait / pinia-plugin-unistorage

uniapp 下 pinia 的本地数据缓存插件
MIT License
17 stars 2 forks source link

自定义 Key 未生效 #2

Open BTMuli opened 1 year ago

BTMuli commented 1 year ago

相关代码:

state: () => {
return {
    token: '',
    username: '',
    password: '',
    nickName: '',
    defaultMail: '',
    phone: '',
    company: '',
    job: '',
};
unistorage: [
{
    key: 'app',
    paths: ['token'],
},
{
    key: 'userInfo',
    paths: ['nickName', 'defaultMail', 'phone', 'company', 'job'],
},
],

实际运行效果: image

markthree commented 1 year ago

@BTMuli 不支持多 key, 欢迎 pr