primevue-mirror/apps/showcase/doc/chip/pt/index.vue

36 lines
860 B
Vue

<template>
<div class="doc-main">
<div class="doc-intro">
<h1>Chip Pass Through</h1>
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</template>
<script>
import DocApiTable from '@/components/doc/DocApiTable.vue';
import { getPTOptions } from '@/components/doc/helpers';
import PTViewer from './PTViewer.vue';
export default {
data() {
return {
docs: [
{
id: 'pt.viewer',
label: 'Viewer',
component: PTViewer
},
{
id: 'pt.doc.chip',
label: 'Chip PT Options',
component: DocApiTable,
data: getPTOptions('Chip')
}
]
};
}
};
</script>