primevue-mirror/apps/showcase/doc/deferredcontent/theming/index.vue

28 lines
544 B
Vue
Raw Normal View History

<template>
<div class="doc-main">
<div class="doc-intro">
<h1>DeferredContent Theming</h1>
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</template>
<script>
import StyledDoc from './StyledDoc.vue';
export default {
data() {
return {
docs: [
{
2023-08-11 10:50:32 +00:00
id: 'theming.styled',
label: 'Styled',
component: StyledDoc
}
]
};
}
};
</script>