primevue-mirror/apps/showcase/doc/nuxt/SetupDoc.vue

31 lines
776 B
Vue
Raw Normal View History

2023-12-26 18:28:43 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>
2024-06-12 22:42:21 +00:00
In <i>nuxt.config</i> file, add the <i>@primevue/nuxt-module</i> to the modules section and define <i>primevue</i> object for the configuration of the module. View the
<NuxtLink to="/nuxt/#configuration">module configuration</NuxtLink> section for the available list of options.
2023-12-26 18:28:43 +00:00
</p>
2024-01-30 08:16:35 +00:00
<DocSectionCode :code="code1" importCode hideToggleCode hideStackBlitz />
2023-12-26 18:28:43 +00:00
</DocSectionText>
</template>
<script>
export default {
data() {
return {
code1: {
basic: `
export default defineNuxtConfig({
modules: [
2024-06-12 22:42:21 +00:00
'@primevue/nuxt-module'
2023-12-26 18:28:43 +00:00
],
primevue: {
/* Options */
}
})
`
}
};
}
};
</script>