primevue-mirror/apps/showcase/doc/cdn/PluginDoc.vue

21 lines
495 B
Vue
Raw Permalink Normal View History

2024-01-23 20:21:13 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-05-27 09:56:08 +00:00
<p>PrimeVue plugin is required to be installed as an application plugin to set up the default <NuxtLink to="/configuration">configuration</NuxtLink>.</p>
2024-01-23 20:21:13 +00:00
</DocSectionText>
2024-01-30 08:16:35 +00:00
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
2024-01-23 20:21:13 +00:00
</template>
<script>
export default {
data() {
return {
code: {
basic: `
2024-05-26 20:42:06 +00:00
app.use(PrimeVue.Config);
2024-01-23 20:21:13 +00:00
`
}
};
}
};
</script>