From 015b7eee5c701ebf86ec84a20685a7287d83fe49 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 25 Oct 2023 12:50:23 +0100 Subject: [PATCH] Refactor on nuxt module doc --- doc/nuxt/SetupDoc.vue | 10 ++++++---- doc/nuxt/configuration/OptionsDoc.vue | 7 ++----- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/doc/nuxt/SetupDoc.vue b/doc/nuxt/SetupDoc.vue index 22d198e36..1970aba69 100644 --- a/doc/nuxt/SetupDoc.vue +++ b/doc/nuxt/SetupDoc.vue @@ -17,8 +17,8 @@ export default defineNuxtConfig({ modules: [ 'nuxt-primevue' ], - primevue: { - /* Options */ + primevue: { + /* Options */ } }) ` @@ -29,9 +29,11 @@ export default defineNuxtConfig({ modules: [ 'nuxt-primevue' ], - primevue: { + primevue: { usePrimeVue: true, options: {}, + importPT: undefined, + cssLayerOrder: 'tailwind-base, primevue, tailwind-utilities', components: { prefix: '', name: undefined, @@ -51,7 +53,7 @@ export default defineNuxtConfig({ exclude: undefined } } -}) +}) ` } }; diff --git a/doc/nuxt/configuration/OptionsDoc.vue b/doc/nuxt/configuration/OptionsDoc.vue index abe48da55..9fdefd82e 100644 --- a/doc/nuxt/configuration/OptionsDoc.vue +++ b/doc/nuxt/configuration/OptionsDoc.vue @@ -11,14 +11,11 @@ export default { return { code: { basic: ` -primevue: { +primevue: { options: { unstyled: true, ripple: true, - inputStyle: 'filled', - pt: { - - } + inputStyle: 'filled' } } `