We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here's my code that I used
<template> <Vue3JsonEditor v-model="state" :show-btns="true" @json-change="onJsonChange"/> </template> <script lang="ts"> import { defineComponent, ref } from 'vue' import { Vue3JsonEditor } from 'vue3-json-editor' export default defineComponent({ name: 'App', components: { Vue3JsonEditor }, setup () { function onJsonChange (value: any) { console.log(value) } const state = ref<object>({}) return { state, onJsonChange } } }) </script>
The text was updated successfully, but these errors were encountered:
We face the same Issue with Vite and Vue3 on mode code.
Sorry, something went wrong.
No branches or pull requests
Here's my code that I used
The text was updated successfully, but these errors were encountered: