vue-json-schema-form icon indicating copy to clipboard operation
vue-json-schema-form copied to clipboard

How to show an image or icon ?

Open clabnet opened this issue 3 years ago • 0 comments

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

clabnet avatar Aug 10 '22 13:08 clabnet