primevue-mirror/pages/scrollpanel/index.vue

51 lines
1.5 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"
2023-08-01 07:35:36 +00:00
:themingDocs="themingDoc"
2023-04-10 14:00:54 +00:00
/>
2022-09-09 20:41:18 +00:00
</template>
<script>
2023-09-21 11:21:43 +00:00
import AccessibilityDoc from '@/doc/scrollpanel/AccessibilityDoc.vue';
import BasicDoc from '@/doc/scrollpanel/BasicDoc.vue';
import CustomDoc from '@/doc/scrollpanel/CustomDoc.vue';
import ImportDoc from '@/doc/scrollpanel/ImportDoc.vue';
2023-04-10 14:00:54 +00:00
import PTComponent from '@/doc/scrollpanel/pt/index.vue';
2023-08-01 07:35:36 +00:00
import ThemingDoc from '@/doc/scrollpanel/theming/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: 'accessibility',
label: 'Accessibility',
component: AccessibilityDoc
}
2023-04-10 14:00:54 +00:00
],
2023-08-01 07:35:36 +00:00
ptComponent: PTComponent,
themingDoc: ThemingDoc
2023-02-28 08:29:30 +00:00
};
2022-09-09 20:41:18 +00:00
}
};
</script>