2022-09-09 20:41:18 +00:00
< template >
2023-02-28 08:29:30 +00:00
< DocComponent title = "Vue Textarea Component" header = "Textarea" description = "Textarea adds styling, key filtering and autoResize functionality to standard textarea element." :componentDocs ="docs" :apiDocs ="['Textarea']" / >
2022-09-09 20:41:18 +00:00
< / template >
< script >
2023-02-28 08:29:30 +00:00
import AccessibilityDoc from '@/doc/textarea/AccessibilityDoc' ;
import AutoResizeDoc from '@/doc/textarea/AutoResizeDoc' ;
import BasicDoc from '@/doc/textarea/BasicDoc' ;
import DisabledDoc from '@/doc/textarea/DisabledDoc' ;
import FloatLabelDoc from '@/doc/textarea/FloatLabelDoc' ;
import ImportDoc from '@/doc/textarea/ImportDoc' ;
import InvalidDoc from '@/doc/textarea/InvalidDoc' ;
import StyleDoc from '@/doc/textarea/StyleDoc' ;
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 : 'basic' ,
label : 'Basic' ,
component : BasicDoc
} ,
{
id : 'auto-resize' ,
label : 'Auto Resize' ,
component : AutoResizeDoc
} ,
{
id : 'float-label' ,
label : 'Float Label' ,
component : FloatLabelDoc
} ,
{
id : 'invalid' ,
label : 'Invalid' ,
component : InvalidDoc
} ,
{
id : 'disabled' ,
label : 'Disabled' ,
component : DisabledDoc
} ,
{
id : 'style' ,
label : 'Style' ,
component : StyleDoc
} ,
{
id : 'accessibility' ,
label : 'Accessibility' ,
component : AccessibilityDoc
}
]
2022-09-09 20:41:18 +00:00
} ;
}
} ;
< / script >