pull/3642/head
Tuğçe Küçükoğlu 2023-02-06 18:10:51 +03:00
parent ba309fdf90
commit c86a7c8df1
1 changed files with 7 additions and 7 deletions

View File

@ -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'
});