|
- /*
- * @Date: 2021-12-08 16:23:20
- * @LastEditors: JinxChen
- * @LastEditTime: 2022-08-12 14:21:39
- * @FilePath: \TelpoUserManageAdmin\src\utils\clear-local-storage.js
- * @description: 增加 清除local Storage的方法
- */
- const prefix = 'telpo_user_admin_';
- const LocalStorageService = {
- clearAll(store) {
- for (let k in store.getters) {
- this.clear(store, k);
- }
- },
- clear(store, type) {
- store.commit(type, '');
- window.localStorage[ prefix + type ] = '';
- },
- };
- export default LocalStorageService;
|