43 lines
1.4 KiB
Vue
43 lines
1.4 KiB
Vue
![]() |
<template>
|
||
|
<DocSectionText v-bind="$attrs">
|
||
|
<p>
|
||
|
An unstyled theme is basically a global <i>pt</i> configuration so that it can be defined only once from a single location, still a particular component can override a global configuration since the <i>pt</i> props of a component and the
|
||
|
global setting is merged with component having higher precedencee.
|
||
|
</p>
|
||
|
</DocSectionText>
|
||
|
|
||
![]() |
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
|
||
![]() |
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
code: {
|
||
![]() |
basic: `
|
||
|
import { createApp } from "vue";
|
||
![]() |
import PrimeVue from "primevue/config";
|
||
|
const app = createApp(App);
|
||
|
|
||
![]() |
app.use(PrimeVue, {
|
||
![]() |
pt: {
|
||
|
button: {
|
||
![]() |
root: { class: 'bg-teal-500 hover:bg-teal-700 cursor-pointer text-white p-4 rounded border-0 flex gap-2' },
|
||
![]() |
label: 'text-white font-bold text-xl', // OR { class: 'text-white font-bold text-xl' }
|
||
![]() |
icon: 'text-white text-2xl'
|
||
![]() |
},
|
||
|
panel: {
|
||
![]() |
header: 'bg-primary text-primary-contrast border-primary',
|
||
![]() |
content: 'border-primary text-lg text-primary-700',
|
||
![]() |
title: 'bg-primary text-primary-contrast text-xl',
|
||
|
toggler: 'bg-primary text-primary-contrast hover:text-primary hover:bg-primary-contrast'
|
||
![]() |
}
|
||
![]() |
}
|
||
![]() |
});
|
||
|
`
|
||
![]() |
}
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|