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

31 lines
843 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
2024-09-17 21:55:40 +00:00
export default defineNuxtPlugin(async (nuxtApp) => {
const runtimeConfig = useRuntimeConfig();
2022-09-14 14:26:41 +00:00
nuxtApp.vueApp.use($appState);
2024-09-17 21:55:40 +00:00
if (runtimeConfig.public.DEV_ENV === 'hot') {
const { default: PrimeVue } = await import('primevue/config');
const { default: Noir } = await import('@/themes/app-theme');
nuxtApp.vueApp.use(PrimeVue, { theme: Noir });
}
2022-09-14 14:26:41 +00:00
});