2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
2023-03-02 12:23:54 +00:00
|
|
|
<p>Theme, core and icons are the necessary css files of the components, visit the <NuxtLink to="/theming/#themes">Themes</NuxtLink> section for the complete list of available themes to choose from.</p>
|
2023-02-28 08:29:30 +00:00
|
|
|
</DocSectionText>
|
2023-02-28 17:40:48 +00:00
|
|
|
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
|
2023-02-28 08:29:30 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
code: {
|
2023-03-02 12:23:54 +00:00
|
|
|
basic: `//theme
|
2023-02-28 08:29:30 +00:00
|
|
|
import "primevue/resources/themes/lara-light-indigo/theme.css";
|
|
|
|
|
|
|
|
//core
|
|
|
|
import "primevue/resources/primevue.min.css";
|
|
|
|
|
|
|
|
//icons
|
2023-03-03 12:15:58 +00:00
|
|
|
import "primeicons/primeicons.css";`
|
2023-02-28 08:29:30 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|