v-bind not unwrapping reactive properties from composable
I have a helper composable here for orchestrating common aria attributes for form fields.
i try to use it in a consuming component without destructuring the returned object
and 'spreading' the props for each respective component via v-bind
however the v-bind only works if i either add the
i try to use it in a consuming component without destructuring the returned object
and 'spreading' the props for each respective component via v-bind
however the v-bind only works if i either add the
.value to the end of each object or if i destructure the values in the script and reference them that way. am i doing something wrong? i was under the impression v-bind unwraps computed values automagically....