From c86a7c8df1833637b116c922757c97d227c7dec4 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: Mon, 6 Feb 2023 18:10:51 +0300 Subject: [PATCH] lint fix --- plugins/appState.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/appState.js b/plugins/appState.js index 6b380a249..ddd519471 100644 --- a/plugins/appState.js +++ b/plugins/appState.js @@ -1,11 +1,11 @@ const $appState = { - install: (Vue, options) => { - Vue.config.globalProperties.$appState = reactive({ - theme: 'lara-light-blue', - darkTheme: false, - codeSandbox: false, - sourceType: 'options-api', - newsActive: true, + install: (Vue) => { + Vue.config.globalProperties.$appState = reactive({ + theme: 'lara-light-blue', + darkTheme: false, + codeSandbox: false, + sourceType: 'options-api', + newsActive: true, announcement: {}, storageKey: 'primevue' });