86 lines
2.8 KiB
Vue
86 lines
2.8 KiB
Vue
|
<template>
|
||
|
<DocComponent title="Vue Password Component" header="Password" description="Password displays strength indicator for password fields." :componentDocs="docs" :apiDocs="['Password']" :ptTabComponent="ptComponent" :themingDocs="themingDoc" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import AccessibilityDoc from '@/doc/password/AccessibilityDoc.vue';
|
||
|
import BasicDoc from '@/doc/password/BasicDoc.vue';
|
||
|
import DisabledDoc from '@/doc/password/DisabledDoc.vue';
|
||
|
import FilledDoc from '@/doc/password/FilledDoc.vue';
|
||
|
import FloatLabelDoc from '@/doc/password/FloatLabelDoc.vue';
|
||
|
import ImportDoc from '@/doc/password/ImportDoc.vue';
|
||
|
import InvalidDoc from '@/doc/password/InvalidDoc.vue';
|
||
|
import LocaleDoc from '@/doc/password/LocaleDoc.vue';
|
||
|
import MeterDoc from '@/doc/password/MeterDoc.vue';
|
||
|
import TemplateDoc from '@/doc/password/TemplateDoc.vue';
|
||
|
import ToggleMaskDoc from '@/doc/password/ToggleMaskDoc.vue';
|
||
|
import PTComponent from '@/doc/password/pt/index.vue';
|
||
|
import ThemingDoc from '@/doc/password/theming/index.vue';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
docs: [
|
||
|
{
|
||
|
id: 'import',
|
||
|
label: 'Import',
|
||
|
component: ImportDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'basic',
|
||
|
label: 'Basic',
|
||
|
component: BasicDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'meter',
|
||
|
label: 'Meter',
|
||
|
component: MeterDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'locale',
|
||
|
label: 'Locale',
|
||
|
component: LocaleDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'togglemask',
|
||
|
label: 'ToggleMask',
|
||
|
component: ToggleMaskDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'template',
|
||
|
label: 'Template',
|
||
|
component: TemplateDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'floatlabel',
|
||
|
label: 'Float Label',
|
||
|
component: FloatLabelDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'filled',
|
||
|
label: 'Filled',
|
||
|
component: FilledDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'invalid',
|
||
|
label: 'Invalid',
|
||
|
component: InvalidDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'disabled',
|
||
|
label: 'Disabled',
|
||
|
component: DisabledDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'accessibility',
|
||
|
label: 'Accessibility',
|
||
|
component: AccessibilityDoc
|
||
|
}
|
||
|
],
|
||
|
ptComponent: PTComponent,
|
||
|
themingDoc: ThemingDoc
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|