Subscribe on changes!

When i use v-bind,vue warns about invalid prop.

avatar
Jul 5th 2022

This isn't a bug. It might look like it's working but props.params1 is still a ref and you will get a runtime error if you try to use it as a number. You should put testBind and hookResult in a reactive() to unwrap all the refs before passing it to the component.

avatar
Jul 8th 2022

Please follow proper Vue syntax. testBind isn't a reactive ref.