vue-json-schema-form
vue-json-schema-form copied to clipboard
How to show an image or icon ?
Hi, I watched your documentation Unfortunately it is not clear for me how to show an image or icon into a vue json schema form. I have add this snippet to my schema :
"properties": {
"ImgItem": {
"type": "object",
"properties": {
"imgUrl": {
"title": "Image url",
"type": "string",
"format": "uri"
},
"imgLink": {
"title": "Image link",
"type": "string",
"format": "uri"
}
},
"required": [
"imgUrl",
"imgLink"
]
},
but the result are two text fields imgUrl and imgLink.
Thank you in advance