primevue-mirror/doc/installation/StyledModeDoc.vue

22 lines
729 B
Vue
Raw Normal View History

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>
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
2023-02-28 08:29:30 +00:00
</DocSectionText>
</template>
<script>
export default {
data() {
return {
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>