2024-01-11 13:46:09 +00:00
|
|
|
<template>
|
2024-02-04 16:11:37 +00:00
|
|
|
<DocComponent
|
|
|
|
title="Vue MeterGroup Component"
|
|
|
|
header="MeterGroup"
|
|
|
|
description="MeterGroup displays scalar measurements within a known range."
|
|
|
|
:componentDocs="docs"
|
|
|
|
:apiDocs="['MeterGroup']"
|
|
|
|
:ptTabComponent="ptComponent"
|
|
|
|
:themingDocs="themingDoc"
|
|
|
|
/>
|
2024-01-11 13:46:09 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import AccessibilityDoc from '@/doc/metergroup/AccessibilityDoc.vue';
|
|
|
|
import BasicDoc from '@/doc/metergroup/BasicDoc.vue';
|
2024-02-04 16:11:37 +00:00
|
|
|
import IconDoc from '@/doc/metergroup/IconDoc.vue';
|
2024-01-11 13:46:09 +00:00
|
|
|
import ImportDoc from '@/doc/metergroup/ImportDoc.vue';
|
|
|
|
import LabelDoc from '@/doc/metergroup/LabelDoc.vue';
|
|
|
|
import MinMaxDoc from '@/doc/metergroup/MinMaxDoc.vue';
|
2024-02-04 16:11:37 +00:00
|
|
|
import MultipleDoc from '@/doc/metergroup/MultipleDoc.vue';
|
|
|
|
import TemplateDoc from '@/doc/metergroup/TemplateDoc.vue';
|
|
|
|
import VerticalDoc from '@/doc/metergroup/VerticalDoc.vue';
|
2024-01-11 13:46:09 +00:00
|
|
|
import PTComponent from '@/doc/metergroup/pt/index.vue';
|
|
|
|
import ThemingDoc from '@/doc/metergroup/theming/index.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
docs: [
|
|
|
|
{
|
|
|
|
id: 'import',
|
|
|
|
label: 'Import',
|
|
|
|
component: ImportDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'basic',
|
|
|
|
label: 'Basic',
|
|
|
|
component: BasicDoc
|
|
|
|
},
|
|
|
|
{
|
2024-01-12 09:53:18 +00:00
|
|
|
id: 'multiple',
|
|
|
|
label: 'Multiple',
|
|
|
|
component: MultipleDoc
|
2024-01-11 13:46:09 +00:00
|
|
|
},
|
2024-02-04 16:11:37 +00:00
|
|
|
{
|
|
|
|
id: 'icon',
|
|
|
|
label: 'Icon',
|
|
|
|
component: IconDoc
|
|
|
|
},
|
2024-01-11 13:46:09 +00:00
|
|
|
{
|
|
|
|
id: 'label',
|
|
|
|
label: 'Label',
|
|
|
|
component: LabelDoc
|
|
|
|
},
|
2024-01-12 09:53:18 +00:00
|
|
|
{
|
|
|
|
id: 'vertical',
|
|
|
|
label: 'Vertical',
|
|
|
|
component: VerticalDoc
|
|
|
|
},
|
2024-01-11 13:46:09 +00:00
|
|
|
{
|
|
|
|
id: 'minmax',
|
|
|
|
label: 'Min-Max',
|
|
|
|
component: MinMaxDoc
|
|
|
|
},
|
|
|
|
{
|
2024-02-04 16:11:37 +00:00
|
|
|
id: 'template',
|
|
|
|
label: 'Template',
|
|
|
|
component: TemplateDoc
|
2024-01-11 13:46:09 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'accessibility',
|
|
|
|
label: 'Accessibility',
|
|
|
|
component: AccessibilityDoc
|
|
|
|
}
|
|
|
|
],
|
|
|
|
ptComponent: PTComponent,
|
|
|
|
themingDoc: ThemingDoc
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|