I have a JSON object that I want users to edit.
When I print it plainly, like {{json}} I get the string, {"car":{"color":"blue"}}. But when I print it in any sort of editable field, like
<input v-model="json">
I get this:
Things I've tried:
html:v-model/html:value- Empty input<textarea v-model="json">{{json}}</textarea>- I get[object Object], BUT when I inspect the element, I see the JSON printed like a string - which is what I want!
