New Nuxt docs

This commit is contained in:
Cagatay Civici 2023-10-15 23:57:44 +03:00
parent 6798b17cf4
commit 18576538e7
15 changed files with 452 additions and 61 deletions

View file

@ -0,0 +1,31 @@
<template>
<DocSectionText v-bind="$attrs">
<p>
Main configuration settings of PrimeVue, refer to the <PrimeVueNuxtLink to="/configuration">configuration</PrimeVueNuxtLink> documentation for details. Defaults to an empty object.
</p>
</DocSectionText>
<DocSectionCode :code="code" importCode hideToggleCode hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
primevue: {
options: {
unstyled: true,
ripple: true,
inputStyle: 'filled',
pt: {
}
}
}
`
}
};
}
};
</script>