koumoul-dev / vuetify-jsonschema-form

Create beautiful and low-effort forms that output valid data. Published on npm as @koumoul/vjsf.
https://koumoul-dev.github.io/vuetify-jsonschema-form/latest/
MIT License
546 stars 155 forks source link

Nested object with dynamic key/value pairs #317

Closed JuliusJacobitz closed 2 years ago

JuliusJacobitz commented 2 years ago

Hi, is there a possibility to represent an empty object which can be filled with dynamic properties?

Example: In the form it should be possible to add key/value pairs to the object "mapping":

... 
"mapping":{
      "dynamicKey1":"value1", 
      "dynamicKey2":"value2",
      }
...
albanm commented 2 years ago

Not possible right now. Except with a custom component in a slot of course.

JuliusJacobitz commented 2 years ago

Alright thanks!