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

42 lines
1.0 KiB
Vue
Raw Normal View History

2023-04-10 14:00:54 +00:00
<template>
<div class="doc-main">
<div class="doc-intro">
<h1>ScrollPanel 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 PtDoc from './PTDoc.vue';
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-10 14:00:54 +00:00
component: PTImage
},
{
id: 'pt.doc',
2023-04-28 11:02:20 +00:00
label: 'ScrollPanel PT Options',
2023-04-10 14:00:54 +00:00
component: DocApiTable,
data: getPTOption('ScrollPanel')
},
{
id: 'pt.demo',
2023-04-21 13:42:52 +00:00
label: 'Demo',
2023-04-10 14:00:54 +00:00
component: PtDoc
}
]
};
}
};
</script>