mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +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'],
|
emits: ['show'],
|
||||||
render() {
|
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() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user