Fixed json not really updating when pasted

This commit is contained in:
2023-06-27 10:39:53 +02:00
parent 377f0041c5
commit 69fc33fdf9

View File

@@ -31,6 +31,6 @@ function clear() {
<JsonButtonFormatterComponent :json="json" @update:result="(data: any) => format(data)"></JsonButtonFormatterComponent>
</div>
</div>
<textarea name="data" id="data" :value="json" class="text-field h-full"></textarea>
<textarea name="data" id="data" v-model="json" class="text-field h-full"></textarea>
</div>
</template>