2023-05-08 14:09:32 +00:00
|
|
|
<template>
|
|
|
|
<div class="doc-main">
|
|
|
|
<div class="doc-intro">
|
|
|
|
<h1>DataTable Pass Through</h1>
|
|
|
|
</div>
|
|
|
|
<DocSections :docs="docs" />
|
|
|
|
</div>
|
|
|
|
<DocSectionNav :docs="docs" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
|
|
|
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
|
|
|
import PTImage from './PTImage.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
docs: [
|
|
|
|
{
|
|
|
|
id: 'pt.image',
|
|
|
|
label: 'Wireframe',
|
|
|
|
component: PTImage
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'pt.doc.datatable',
|
|
|
|
label: 'DataTable PT Options',
|
|
|
|
component: DocApiTable,
|
|
|
|
data: getPTOption('DataTable')
|
|
|
|
},
|
2023-05-09 15:05:27 +00:00
|
|
|
{
|
|
|
|
id: 'pt.doc.column',
|
|
|
|
label: 'Column PT Options',
|
|
|
|
component: DocApiTable,
|
|
|
|
data: getPTOption('Column')
|
|
|
|
},
|
2023-05-10 11:41:26 +00:00
|
|
|
{
|
|
|
|
id: 'pt.doc.columngroup',
|
|
|
|
label: 'ColumnGroup PT Options',
|
|
|
|
component: DocApiTable,
|
|
|
|
data: getPTOption('ColumnGroup')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'pt.doc.row',
|
|
|
|
label: 'Row PT Options',
|
|
|
|
component: DocApiTable,
|
|
|
|
data: getPTOption('Row')
|
2023-05-08 14:09:32 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|