2024-02-02 12:56:33 +00:00
< template >
2024-02-13 06:26:25 +00:00
< DocComponent title = "Vue IconField" header = "IconField" description = "IconField wraps an input and an icon." :componentDocs ="docs" :ptTabComponent ="ptComponent" : apiDocs = "['IconField', 'InputIcon']" :themingDocs ="themingDoc" / >
2024-02-02 12:56:33 +00:00
< / template >
< script >
2024-02-02 13:30:48 +00:00
import AccessibilityDoc from '@/doc/iconfield/AccessibilityDoc.vue' ;
import BasicDoc from '@/doc/iconfield/BasicDoc.vue' ;
2024-09-23 08:02:01 +00:00
import FloatLabelDoc from '@/doc/iconfield/FloatLabelDoc.vue' ;
import IftaLabelDoc from '@/doc/iconfield/IftaLabelDoc.vue' ;
2024-10-25 20:13:22 +00:00
import SizesDoc from '@/doc/iconfield/SizesDoc.vue' ;
2024-02-02 13:30:48 +00:00
import ImportDoc from '@/doc/iconfield/ImportDoc.vue' ;
2024-02-14 08:14:13 +00:00
import TemplateDoc from '@/doc/iconfield/TemplateDoc.vue' ;
2024-02-07 12:08:53 +00:00
import PTComponent from '@/doc/iconfield/pt/index.vue' ;
2024-02-02 13:30:48 +00:00
import ThemingDoc from '@/doc/iconfield/theming/index.vue' ;
2024-02-02 12:56:33 +00:00
export default {
data ( ) {
return {
docs : [
{
id : 'import' ,
label : 'Import' ,
component : ImportDoc
} ,
{
id : 'basic' ,
label : 'Basic' ,
component : BasicDoc
} ,
2024-02-14 08:14:13 +00:00
{
id : 'template' ,
label : 'Template' ,
component : TemplateDoc
} ,
2024-09-23 08:02:01 +00:00
{
id : 'floatlabel' ,
label : 'Float Label' ,
component : FloatLabelDoc
} ,
{
id : 'iftalabel' ,
label : 'Ifta Label' ,
component : IftaLabelDoc
} ,
2024-10-25 20:13:22 +00:00
{
id : 'sizes' ,
label : 'Sizes' ,
component : SizesDoc
} ,
2024-02-02 12:56:33 +00:00
{
id : 'accessibility' ,
label : 'Accessibility' ,
component : AccessibilityDoc
}
] ,
2024-02-07 12:08:53 +00:00
ptComponent : PTComponent ,
2024-02-02 12:56:33 +00:00
themingDoc : ThemingDoc
} ;
}
} ;
< / script >