91 lines
3.0 KiB
Vue
Executable File
91 lines
3.0 KiB
Vue
Executable File
<template>
|
|
<DocComponent title="Vue Input Component" header="InputText" description="InputText is an extension to standard input element with theming." :componentDocs="docs" :apiDocs="['InputText']" :ptTabComponent="ptComponent" />
|
|
</template>
|
|
|
|
<script>
|
|
import AccessibilityDoc from '@/doc/inputtext/AccessibilityDoc.vue';
|
|
import BasicDoc from '@/doc/inputtext/BasicDoc.vue';
|
|
import DisabledDoc from '@/doc/inputtext/DisabledDoc.vue';
|
|
import FloatLabelDoc from '@/doc/inputtext/FloatLabelDoc.vue';
|
|
import HelpTextDoc from '@/doc/inputtext/HelpTextDoc.vue';
|
|
import IconsDoc from '@/doc/inputtext/IconsDoc.vue';
|
|
import ImportDoc from '@/doc/inputtext/ImportDoc.vue';
|
|
import InvalidDoc from '@/doc/inputtext/InvalidDoc.vue';
|
|
import SizesDoc from '@/doc/inputtext/SizesDoc.vue';
|
|
import StyleDoc from '@/doc/inputtext/StyleDoc.vue';
|
|
import VeeValidateDoc from '@/doc/inputtext/form/VeeValidateDoc.vue';
|
|
import PTComponent from '@/doc/inputtext/pt/index.vue';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
docs: [
|
|
{
|
|
id: 'import',
|
|
label: 'Import',
|
|
component: ImportDoc
|
|
},
|
|
{
|
|
id: 'basic',
|
|
label: 'Basic',
|
|
component: BasicDoc
|
|
},
|
|
{
|
|
id: 'icons',
|
|
label: 'Icons',
|
|
component: IconsDoc
|
|
},
|
|
{
|
|
id: 'sizes',
|
|
label: 'Sizes',
|
|
component: SizesDoc
|
|
},
|
|
{
|
|
id: 'helptext',
|
|
label: 'HelpText',
|
|
component: HelpTextDoc
|
|
},
|
|
{
|
|
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: 'style',
|
|
label: 'Style',
|
|
component: StyleDoc
|
|
},
|
|
{
|
|
id: 'accessibility',
|
|
label: 'Accessibility',
|
|
component: AccessibilityDoc
|
|
}
|
|
],
|
|
ptComponent: PTComponent
|
|
};
|
|
}
|
|
};
|
|
</script>
|