[Vuejs]-Upgrading from slot-scope to v-slot breaks without errors

1👍

your render function in FormGroup.vue returns more than one VNode. Try that:

render(createElement) {
  return createElement(
    "div",
    this.$scopedSlots.default({
      errors: this.errors,
      invalid: this.invalid,
    })
  );
}

Leave a comment