2023-03-31 23:42:09 +00:00
|
|
|
<template>
|
|
|
|
<div className="doc-main">
|
|
|
|
<div className="doc-intro">
|
|
|
|
<h1>Panel Pass Through</h1>
|
|
|
|
<p>Description</p>
|
|
|
|
</div>
|
|
|
|
<DocSections :docs="docs" />
|
|
|
|
</div>
|
|
|
|
<DocSectionNav :docs="docs" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-04-01 02:36:59 +00:00
|
|
|
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
|
|
|
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
2023-03-31 23:42:09 +00:00
|
|
|
import PtDoc from './PTDoc.vue';
|
|
|
|
import PTImage from './PTImage.vue';
|
2023-04-01 02:36:59 +00:00
|
|
|
|
2023-03-31 23:42:09 +00:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
docs: [
|
|
|
|
{
|
|
|
|
id: 'pt.image',
|
|
|
|
label: 'Image',
|
|
|
|
description: 'Pass Through Image',
|
|
|
|
component: PTImage
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'pt.doc',
|
|
|
|
label: 'Panel PT Options',
|
|
|
|
description: 'Pass Through Doc',
|
|
|
|
component: DocApiTable,
|
|
|
|
data: getPTOption('Panel')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'pt.demo',
|
|
|
|
label: 'Demo',
|
|
|
|
description: 'Pass Through Demo',
|
|
|
|
component: PtDoc
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|