How to convert plain object to reactive one and set it to the ref.value #7084
NEBA0317
started this conversation in
General Discussions
Replies: 1 comment
-
Maybe you can this selectedCheckboxes.value = ref(gridData).value or import { unref } from 'vue'
selectedCheckboxes.value = unref(gridData).value doc: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to convert this gridData to reactive object and set it to ref.value. If I use toRefs it gives unwanted structured data
Beta Was this translation helpful? Give feedback.
All reactions