primevue-mirror/apps/showcase/plugins/app-state.js

22 lines
536 B
JavaScript
Raw Normal View History

2024-03-31 04:44:48 +00:00
import { reactive } from 'vue';
2022-09-06 11:52:18 +00:00
const $appState = {
2023-02-28 08:29:30 +00:00
install: (Vue, options) => {
2023-12-30 22:26:14 +00:00
Vue.config.globalProperties.$appState = reactive({
2024-05-15 10:05:13 +00:00
preset: 'Aura',
2024-05-26 00:28:48 +00:00
primary: 'noir',
surface: null,
2023-12-30 22:26:14 +00:00
darkTheme: false,
codeSandbox: false,
sourceType: 'options-api',
newsActive: false,
announcement: null,
storageKey: 'primevue'
2023-12-30 22:26:14 +00:00
});
2022-09-14 14:26:41 +00:00
}
};
2022-12-09 20:47:50 +00:00
2022-09-06 11:52:18 +00:00
export default defineNuxtPlugin((nuxtApp) => {
2022-09-14 14:26:41 +00:00
nuxtApp.vueApp.use($appState);
});