diff --git a/apps/showcase/doc/inputotp/FilledDoc.vue b/apps/showcase/doc/inputotp/FilledDoc.vue new file mode 100644 index 000000000..47a529cf1 --- /dev/null +++ b/apps/showcase/doc/inputotp/FilledDoc.vue @@ -0,0 +1,54 @@ + + + Specify the variant property as filled to display the component with a higher visual emphasis than the default outlined style. + + + + + + + + diff --git a/apps/showcase/pages/inputotp/index.vue b/apps/showcase/pages/inputotp/index.vue index 898b11f46..a40835f2a 100644 --- a/apps/showcase/pages/inputotp/index.vue +++ b/apps/showcase/pages/inputotp/index.vue @@ -9,6 +9,7 @@ import ImportDoc from '@/doc/inputotp/ImportDoc.vue'; import IntegerOnlyDoc from '@/doc/inputotp/IntegerOnlyDoc.vue'; import MaskDoc from '@/doc/inputotp/MaskDoc.vue'; import SampleDoc from '@/doc/inputotp/SampleDoc.vue'; +import FilledDoc from '@/doc/inputotp/FilledDoc.vue'; import TemplateDoc from '@/doc/inputotp/TemplateDoc.vue'; import PTComponent from '@/doc/inputotp/pt/index.vue'; import ThemingDoc from '@/doc/inputotp/theming/index.vue'; @@ -37,6 +38,11 @@ export default { label: 'Integer Only', component: IntegerOnlyDoc }, + { + id: 'filled', + label: 'Filled', + component: FilledDoc + }, { id: 'template', label: 'Template',
Specify the variant property as filled to display the component with a higher visual emphasis than the default outlined style.