diff --git a/src/layout/components/tags/index.vue b/src/layout/components/tags/index.vue index 317cedd..909d596 100644 --- a/src/layout/components/tags/index.vue +++ b/src/layout/components/tags/index.vue @@ -3,7 +3,10 @@
diff --git a/src/utils/cache/index.js b/src/utils/cache/index.js index 6849483..f439e16 100644 --- a/src/utils/cache/index.js +++ b/src/utils/cache/index.js @@ -1,9 +1,15 @@ import { createWebStorage } from './web-storage' export const createLocalStorage = function (option = {}) { - return createWebStorage({ prefixKey: option.prefixKey || '', storage: localStorage }) + return createWebStorage({ + prefixKey: option.prefixKey || '', + storage: localStorage, + }) } export const createSessionStorage = function (option = {}) { - return createWebStorage({ prefixKey: option.prefixKey || '', storage: sessionStorage }) + return createWebStorage({ + prefixKey: option.prefixKey || '', + storage: sessionStorage, + }) }