Theming API: Refactor on shocase

pull/5677/head
mertsincan 2024-04-06 16:48:36 +03:00
parent 205aa1bbae
commit ac1360664e
2 changed files with 5 additions and 1 deletions

View File

@ -22,12 +22,13 @@ export default defineNuxtConfig({
'/installation': { redirect: { to: '/vite', statusCode: 301 } }
},
primevue: {
usePrimeVue: false,
options: {
ripple: true
},
unstyled: false,
layerOrder: 'primevue',
importTheme: { from: '@/themes/app-theme.js' },
//importTheme: { from: '@/themes/app-theme.js' },
resolvePath: function ({ as, from, type }) {
const resolvedPath = from.replace('primevue', '@/components/lib');

View File

@ -1,3 +1,5 @@
import Noir from '@/themes/app-theme.js';
import PrimeVue from 'primevue/config';
import { reactive } from 'vue';
const $appState = {
@ -17,4 +19,5 @@ const $appState = {
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.use($appState);
nuxtApp.vueApp.use(PrimeVue, { theme: Noir });
});