27 lines
586 B
Vue
27 lines
586 B
Vue
![]() |
<template>
|
||
|
<DocSectionText v-bind="$attrs">
|
||
![]() |
<p>Main configuration settings of PrimeVue, refer to the <PrimeVueNuxtLink to="/configuration">configuration</PrimeVueNuxtLink> documentation for details.</p>
|
||
![]() |
</DocSectionText>
|
||
![]() |
<DocSectionCode :code="code" importCode hideToggleCode hideStackBlitz />
|
||
![]() |
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
code: {
|
||
|
basic: `
|
||
![]() |
primevue: {
|
||
![]() |
options: {
|
||
|
unstyled: true,
|
||
|
ripple: true,
|
||
![]() |
inputVariant: 'filled'
|
||
![]() |
}
|
||
|
}
|
||
|
`
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|