Thanks for all your great work on Vue 3!
I am trying to migrate my Open Source project (metawidget.org) to Vue 3. An important feature is the component needs access to the original v-model expression text. So if the HTML tag says v-model=“foo.bar” I need the actual text “foo.bar”, rather than the object that foo.bar resolves to.
In Vue 2 my component was doing this.$vnode.data.model.expression
What is the equivalent now?