primevue-mirror/apps/showcase/pages/checkbox/index.vue

82 lines
2.5 KiB
Vue
Raw Normal View History

2022-09-09 20:41:18 +00:00
<template>
2023-07-25 13:47:12 +00:00
<DocComponent
title="Vue Checkbox Component"
header="Checkbox"
description="Checkbox is an extension to standard checkbox element with theming."
:componentDocs="docs"
:apiDocs="['Checkbox']"
:ptTabComponent="ptComponent"
:themingDocs="themingDoc"
/>
2022-09-09 20:41:18 +00:00
</template>
<script>
2023-09-21 11:21:43 +00:00
import AccessibilityDoc from '@/doc/checkbox/AccessibilityDoc.vue';
import BasicDoc from '@/doc/checkbox/BasicDoc.vue';
import DisabledDoc from '@/doc/checkbox/DisabledDoc.vue';
import DynamicDoc from '@/doc/checkbox/DynamicDoc.vue';
2024-02-02 11:49:09 +00:00
import FilledDoc from '@/doc/checkbox/FilledDoc.vue';
2023-09-21 11:21:43 +00:00
import GroupDoc from '@/doc/checkbox/GroupDoc.vue';
import ImportDoc from '@/doc/checkbox/ImportDoc.vue';
2024-03-27 08:47:34 +00:00
import IndeterminateDoc from '@/doc/checkbox/IndeterminateDoc.vue';
2023-09-21 11:21:43 +00:00
import InvalidDoc from '@/doc/checkbox/InvalidDoc.vue';
2023-05-05 09:10:17 +00:00
import PTComponent from '@/doc/checkbox/pt/index.vue';
2023-07-25 13:47:12 +00:00
import ThemingDoc from '@/doc/checkbox/theming/index.vue';
2022-09-09 20:41:18 +00:00
export default {
data() {
return {
2023-02-28 08:29:30 +00:00
docs: [
{
id: 'import',
label: 'Import',
component: ImportDoc
},
{
id: 'basic',
label: 'Basic',
component: BasicDoc
},
{
2024-03-27 08:47:34 +00:00
id: 'indeterminate',
label: 'Indeterminate',
component: IndeterminateDoc
},
{
2023-02-28 08:29:30 +00:00
id: 'group',
label: 'Group',
component: GroupDoc
},
{
id: 'dynamic',
label: 'Dynamic',
component: DynamicDoc
},
{
id: 'invalid',
label: 'Invalid',
component: InvalidDoc
},
2024-02-02 11:49:09 +00:00
{
id: 'filled',
label: 'Filled',
component: FilledDoc
},
2023-02-28 08:29:30 +00:00
{
id: 'disabled',
label: 'Disabled',
component: DisabledDoc
},
{
id: 'accessibility',
label: 'Accessibility',
component: AccessibilityDoc
}
2023-05-05 09:10:17 +00:00
],
2023-07-25 13:47:12 +00:00
ptComponent: PTComponent,
themingDoc: ThemingDoc
2022-09-09 20:41:18 +00:00
};
}
};
</script>