primevue-mirror/apps/showcase/doc/nuxt/configuration/UsePrimeVueDoc.vue

23 lines
508 B
Vue
Raw Normal View History

2023-10-15 20:57:44 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-07-03 10:06:06 +00:00
<p>The module installs the PrimeVue plugin by default. Disable this option if you prefer to configure PrimeVue manually e.g. with a Nuxt plugin.</p>
2023-10-15 20:57:44 +00:00
</DocSectionText>
2024-01-30 08:16:35 +00:00
<DocSectionCode :code="code" importCode hideToggleCode hideStackBlitz />
2023-10-15 20:57:44 +00:00
</template>
<script>
export default {
data() {
return {
code: {
basic: `
2024-01-30 08:16:35 +00:00
primevue: {
2024-10-27 10:54:37 +00:00
usePrimeVue: true | false
2023-10-15 20:57:44 +00:00
}
`
}
};
}
};
</script>