38 lines
915 B
Vue
38 lines
915 B
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>The <i>theme</i> property is used to customize the initial theme, prefer the <i>PrimeVue</i> plugin for custom configuration instead of the preconfigured <i>PrimeVueStyled</i>.</p>
|
|
</DocSectionText>
|
|
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
code: {
|
|
basic: `
|
|
import PrimeVue from 'primevue/config';
|
|
import PrimeOne from 'primevue/themes/primeone';
|
|
import Aura from 'primevue/themes/primeone/aura';
|
|
|
|
const app = createApp(App);
|
|
|
|
app.use(PrimeVue, {
|
|
// Default theme configuration
|
|
theme: {
|
|
base: PrimeOne,
|
|
preset: Aura,
|
|
options: {
|
|
prefix: 'p',
|
|
darkModeSelector: 'system',
|
|
cssLayer: false
|
|
}
|
|
}
|
|
});
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|