From c1c80e768af9d0c4302834f4e9148844d8a1030e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 8 Mar 2023 12:58:44 +0300 Subject: [PATCH] storageKey added --- plugins/appState.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/appState.js b/plugins/appState.js index 91920d16f..dba0c9f77 100644 --- a/plugins/appState.js +++ b/plugins/appState.js @@ -1,6 +1,6 @@ const $appState = { install: (Vue, options) => { - Vue.config.globalProperties.$appState = reactive({ theme: 'lara-light-blue', darkTheme: false, codeSandbox: false, sourceType: 'options-api', newsActive: true, announcement: {} }); + Vue.config.globalProperties.$appState = reactive({ theme: 'lara-light-blue', darkTheme: false, codeSandbox: false, sourceType: 'options-api', newsActive: true, announcement: {}, storageKey: 'primevue' }); } };