[Vuejs]-DefineExpose stop unwrapping

1👍

If a ref is needed then it can be re-formed from unwrapped properties. For a read-only ref it would be:

const nestedRef = computed(() => someRef.value.nestedUnwrappedRef);

Leave a comment