You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setup function in FeathersVuesFromWrapper.ts generates an error when the watcher of the clone is initialised. (cb.bind is not a function)
it works if changed to const cb = this.markAsDirty; this.$watch('clone', cb, {deep: true}
in the render function this.$scopedSlots is removed in vue 3. this.$slots.default fixes the problem
The text was updated successfully, but these errors were encountered:
Actual behavior
setup
function inFeathersVuesFromWrapper.ts
generates an error when the watcher of the clone is initialised. (cb.bind is not a function)it works if changed to
const cb = this.markAsDirty; this.$watch('clone', cb, {deep: true}
render
functionthis.$scopedSlots
is removed in vue 3.this.$slots.default
fixes the problemThe text was updated successfully, but these errors were encountered: