fix(Lazyload): lazy-component not work

This commit is contained in:
chenjiahan 2020-11-30 19:06:57 +08:00
parent b7306e311b
commit b6a9245740

View File

@ -11,7 +11,11 @@ export default (lazy) => {
},
emits: ['show'],
render() {
return h(this.tag, null, this.show ? this.$slots.default : null);
return h(
this.tag,
null,
this.show && this.$slots.default ? this.$slots.default() : null
);
},
data() {
return {