primevue-mirror/doc/terminal/pt/index.vue

36 lines
875 B
Vue
Raw Normal View History

2023-04-24 08:34:08 +00:00
<template>
<div class="doc-main">
<div class="doc-intro">
<h1>Terminal Pass Through</h1>
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</template>
<script>
import DocApiTable from '@/components/doc/DocApiTable.vue';
2024-05-13 21:48:50 +00:00
import { getPTOptions } from '@/components/doc/helpers';
2023-04-24 08:34:08 +00:00
import PTImage from './PTImage.vue';
export default {
data() {
return {
docs: [
{
id: 'pt.image',
2023-04-26 19:10:15 +00:00
label: 'Wireframe',
2023-04-24 08:34:08 +00:00
component: PTImage
},
{
2023-05-02 09:36:48 +00:00
id: 'pt.doc.terminal',
2023-04-28 11:02:20 +00:00
label: 'Terminal PT Options',
2023-04-24 08:34:08 +00:00
component: DocApiTable,
2024-05-13 21:48:50 +00:00
data: getPTOptions('Terminal')
2023-04-24 08:34:08 +00:00
}
]
};
}
};
</script>