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

23 lines
531 B
Vue
Raw Normal View History

2023-10-15 20:57:44 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-10-15 21:00:28 +00:00
<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>
2023-10-15 20:57:44 +00:00
</DocSectionText>
<DocSectionCode :code="code" importCode hideToggleCode hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
primevue: {
usePrimeVue: true
}
`
}
};
}
};
</script>