1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-10 17:32:36 +00:00
primevue-mirror/doc/nuxt/configuration/UsePrimeVueDoc.vue
2024-01-30 11:16:35 +03:00

22 lines
513 B
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>Whether to install the PrimeVue plugin, defaults to <i>true</i>. Disable this option if you prefer to configure PrimeVue manually e.g. with a Nuxt plugin.</p>
</DocSectionText>
<DocSectionCode :code="code" importCode hideToggleCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
primevue: {
usePrimeVue: true
}
`
}
};
}
};
</script>