primevue-mirror/pages/scrollpanel/index.vue

54 lines
1.6 KiB
Vue
Raw Normal View History

2022-09-09 20:41:18 +00:00
<template>
2023-04-10 14:00:54 +00:00
<DocComponent
title="Vue ScrollPanel Component"
header="ScrollPanel"
description="ScrollPanel is a cross browser, lightweight and skinnable alternative to native browser scrollbar."
:componentDocs="docs"
:apiDocs="['ScrollPanel']"
:ptTabComponent="ptComponent"
/>
2022-09-09 20:41:18 +00:00
</template>
<script>
2023-02-28 08:29:30 +00:00
import AccessibilityDoc from '@/doc/scrollpanel/AccessibilityDoc';
import BasicDoc from '@/doc/scrollpanel/BasicDoc';
import CustomDoc from '@/doc/scrollpanel/CustomDoc';
import ImportDoc from '@/doc/scrollpanel/ImportDoc';
import StyleDoc from '@/doc/scrollpanel/StyleDoc';
2023-04-10 14:00:54 +00:00
import PTComponent from '@/doc/scrollpanel/pt/index.vue';
2022-09-09 20:41:18 +00:00
export default {
2023-02-28 08:29:30 +00:00
data() {
return {
docs: [
{
id: 'import',
label: 'Import',
component: ImportDoc
},
{
id: 'basic',
label: 'Basic',
component: BasicDoc
},
{
id: 'custom',
label: 'Custom',
component: CustomDoc
},
{
id: 'style',
label: 'Style',
component: StyleDoc
},
{
id: 'accessibility',
label: 'Accessibility',
component: AccessibilityDoc
}
2023-04-10 14:00:54 +00:00
],
ptComponent: PTComponent
2023-02-28 08:29:30 +00:00
};
2022-09-09 20:41:18 +00:00
}
};
</script>