Commit 14221dbc authored by Nick Sellen's avatar Nick Sellen
Browse files

Check if $slots.default is defined before calling

parent 852a1807
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -408,7 +408,7 @@ export default {
    return h(
      "div",
      { style: { width: "100%", height: "100%" }, ref: "root" },
      this.ready ? this.$slots.default() : {}
      this.ready && this.$slots.default ? this.$slots.default() : {}
    );
  },
};