primevue-mirror/doc/installation/StyledModeDoc.vue

25 lines
737 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-09-22 12:54:14 +00:00
basic: `
//theme
import "primevue/resources/themes/lara-light-indigo/theme.css";
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>