2022-09-09 20:41:18 +00:00
|
|
|
<template>
|
2023-07-26 14:53:34 +00:00
|
|
|
<DocComponent
|
|
|
|
title="Vue InputNumber Component"
|
|
|
|
header="InputNumber"
|
|
|
|
description="InputNumber is an input component to provide numerical input."
|
|
|
|
:componentDocs="docs"
|
|
|
|
:apiDocs="['InputNumber']"
|
|
|
|
: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/inputnumber/AccessibilityDoc.vue';
|
|
|
|
import ButtonsDoc from '@/doc/inputnumber/ButtonsDoc.vue';
|
|
|
|
import CurrencyDoc from '@/doc/inputnumber/CurrencyDoc.vue';
|
|
|
|
import DisabledDoc from '@/doc/inputnumber/DisabledDoc.vue';
|
|
|
|
import FloatLabelDoc from '@/doc/inputnumber/FloatLabelDoc.vue';
|
|
|
|
import ImportDoc from '@/doc/inputnumber/ImportDoc.vue';
|
|
|
|
import InvalidDoc from '@/doc/inputnumber/InvalidDoc.vue';
|
|
|
|
import LocaleDoc from '@/doc/inputnumber/LocaleDoc.vue';
|
|
|
|
import NumeralsDoc from '@/doc/inputnumber/NumeralsDoc.vue';
|
|
|
|
import PrefixSuffixDoc from '@/doc/inputnumber/PrefixSuffixDoc.vue';
|
|
|
|
import VerticalDoc from '@/doc/inputnumber/VerticalDoc.vue';
|
|
|
|
import VeeValidateDoc from '@/doc/inputnumber/form/VeeValidateDoc.vue';
|
2023-05-05 12:57:15 +00:00
|
|
|
import PTComponent from '@/doc/inputnumber/pt/index.vue';
|
2023-07-26 14:53:34 +00:00
|
|
|
import ThemingDoc from '@/doc/inputnumber/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: 'numerals',
|
|
|
|
label: 'Numerals',
|
|
|
|
component: NumeralsDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'locale',
|
|
|
|
label: 'Locale',
|
|
|
|
component: LocaleDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'currency',
|
|
|
|
label: 'Currency',
|
|
|
|
component: CurrencyDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'prefixsuffix',
|
|
|
|
label: 'Prefix & Suffix',
|
|
|
|
component: PrefixSuffixDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'buttons',
|
|
|
|
label: 'Buttons',
|
|
|
|
component: ButtonsDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'vertical',
|
|
|
|
label: 'Vertical',
|
|
|
|
component: VerticalDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'floatlabel',
|
|
|
|
label: 'Float Label',
|
|
|
|
component: FloatLabelDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'invalid',
|
|
|
|
label: 'Invalid',
|
|
|
|
component: InvalidDoc
|
|
|
|
},
|
2023-03-16 12:57:15 +00:00
|
|
|
{
|
|
|
|
id: 'form',
|
|
|
|
label: 'Form',
|
|
|
|
description: 'Compatibility with popular Vue form libraries.',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
id: 'veevalidate',
|
|
|
|
label: 'VeeValidate',
|
|
|
|
component: VeeValidateDoc
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2023-02-28 08:29:30 +00:00
|
|
|
{
|
|
|
|
id: 'disabled',
|
|
|
|
label: 'Disabled',
|
|
|
|
component: DisabledDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'accessibility',
|
|
|
|
label: 'Accessibility',
|
|
|
|
component: AccessibilityDoc
|
|
|
|
}
|
2023-05-05 12:57:15 +00:00
|
|
|
],
|
2023-07-26 14:53:34 +00:00
|
|
|
ptComponent: PTComponent,
|
|
|
|
themingDoc: ThemingDoc
|
2022-09-09 20:41:18 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|