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

27 lines
586 B
Vue
Raw Normal View History

2023-10-15 20:57:44 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-05-27 09:13:32 +00:00
<p>Main configuration settings of PrimeVue, refer to the <PrimeVueNuxtLink to="/configuration">configuration</PrimeVueNuxtLink> documentation for details.</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: `
2023-10-25 11:50:23 +00:00
primevue: {
2023-10-15 20:57:44 +00:00
options: {
unstyled: true,
ripple: true,
inputVariant: 'filled'
2023-10-15 20:57:44 +00:00
}
}
`
}
};
}
};
</script>