2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
2023-07-09 21:13:49 +00:00
|
|
|
<p>
|
2023-07-10 08:47:46 +00:00
|
|
|
Styled mode is based on pre-skinned components with opinionated themes like Material, Bootstrap or PrimeOne themes. Theme is the required css file to be imported, visit the
|
2023-07-09 21:13:49 +00:00
|
|
|
<NuxtLink to="/theming/#themes">Themes</NuxtLink> section for the complete list of available themes to choose from.
|
|
|
|
</p>
|
2023-09-21 08:42:35 +00:00
|
|
|
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
|
2023-02-28 08:29:30 +00:00
|
|
|
</DocSectionText>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2023-09-21 08:42:35 +00:00
|
|
|
code: {
|
2023-11-20 08:33:43 +00:00
|
|
|
basic: "\nimport 'primevue/resources/themes/lara-light-green/theme.css'\n"
|
2023-02-28 08:29:30 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|