mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
26 lines
629 B
Vue
26 lines
629 B
Vue
<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'
|
|
}
|
|
}
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|