1234567891011121314151617181920212223 |
- import { defineStore } from 'pinia';
- export const modalStore = defineStore({
- id: 'modal',
- state: () => ({
- lastTimer: {
- // 短信验证码计时器,为了防止刷新请求做了持久化
- smsLogin: 0,
- changeMobile: 0,
- resetPassword: 0,
- changePassword: 0,
- }
- }),
- persist: {
- enabled: true,
- strategies: [
- {
- key: 'modal-store',
- paths: ['lastTimer', 'advHistory'],
- },
- ],
- },
- });
|