97 lines
3.1 KiB
Vue
Executable File
97 lines
3.1 KiB
Vue
Executable File
<template>
|
|
<DocComponent
|
|
title="Vue Mask Component"
|
|
header="InputMask"
|
|
description="InputMask component is used to enter input in a certain format such as numeric, date, currency, email and phone."
|
|
:componentDocs="docs"
|
|
:apiDocs="['InputMask']"
|
|
:ptTabComponent="ptComponent"
|
|
:themingDocs="themingDoc"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import AccessibilityDoc from '@/doc/inputmask/AccessibilityDoc.vue';
|
|
import BasicDoc from '@/doc/inputmask/BasicDoc.vue';
|
|
import DisabledDoc from '@/doc/inputmask/DisabledDoc.vue';
|
|
import FloatLabelDoc from '@/doc/inputmask/FloatLabelDoc.vue';
|
|
import ImportDoc from '@/doc/inputmask/ImportDoc.vue';
|
|
import InvalidDoc from '@/doc/inputmask/InvalidDoc.vue';
|
|
import MaskDoc from '@/doc/inputmask/MaskDoc.vue';
|
|
import OptionalDoc from '@/doc/inputmask/OptionalDoc.vue';
|
|
import SlotCharDoc from '@/doc/inputmask/SlotCharDoc.vue';
|
|
import VeeValidateDoc from '@/doc/inputmask/form/VeeValidateDoc.vue';
|
|
import PTComponent from '@/doc/inputmask/pt/index.vue';
|
|
import ThemingDoc from '@/doc/inputmask/theming/index.vue';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
docs: [
|
|
{
|
|
id: 'import',
|
|
label: 'Import',
|
|
component: ImportDoc
|
|
},
|
|
{
|
|
id: 'basic',
|
|
label: 'Basic',
|
|
component: BasicDoc
|
|
},
|
|
{
|
|
id: 'mask',
|
|
label: 'Mask',
|
|
component: MaskDoc
|
|
},
|
|
{
|
|
id: 'optional',
|
|
label: 'Optional',
|
|
component: OptionalDoc
|
|
},
|
|
{
|
|
id: 'slotchar',
|
|
label: 'SlotChar',
|
|
component: SlotCharDoc
|
|
},
|
|
{
|
|
id: 'floatlabel',
|
|
label: 'FloatLabel',
|
|
component: FloatLabelDoc
|
|
},
|
|
{
|
|
id: 'invalid',
|
|
label: 'Invalid',
|
|
component: InvalidDoc
|
|
},
|
|
{
|
|
id: 'disabled',
|
|
label: 'Disabled',
|
|
component: DisabledDoc
|
|
},
|
|
{
|
|
id: 'form',
|
|
label: 'Form',
|
|
description: 'Compatibility with popular Vue form libraries.',
|
|
children: [
|
|
{
|
|
id: 'veevalidate',
|
|
label: 'VeeValidate',
|
|
component: VeeValidateDoc
|
|
}
|
|
]
|
|
},
|
|
{
|
|
id: 'accessibility',
|
|
label: 'Accessibility',
|
|
component: AccessibilityDoc
|
|
}
|
|
],
|
|
ptComponent: PTComponent,
|
|
themingDoc: ThemingDoc
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|