DataTable, TreeTable, Timeline unstyled demo updates

This commit is contained in:
Tuğçe Küçükoğlu 2023-07-27 10:36:51 +03:00
parent 70435e3371
commit 6b762d08be
12 changed files with 555 additions and 47 deletions

View file

@ -0,0 +1,33 @@
<template>
<div class="doc-main">
<div class="doc-intro">
<h1>DataTable Theming</h1>
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</template>
<script>
import StyledDoc from './StyledDoc.vue';
import UnstyledDoc from './UnstyledDoc.vue';
export default {
data() {
return {
docs: [
{
id: 'styled',
label: 'Styled',
component: StyledDoc
},
{
id: 'unstyled',
label: 'Unstyled',
component: UnstyledDoc
}
]
};
}
};
</script>