mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Lazyload): lazy-component not work
This commit is contained in:
parent
b7306e311b
commit
b6a9245740
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user