mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
in vue 3.x h is not function. this.$slots.default is a function. [vue 3.x refs render-function-api-change](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0008-render-function-api-change.md) [vue 3.x docs h](https://cn.vuejs.org/api/render-function.html#h) - reappear - test ```vue // vant/packages/vant/src/lazyload/demo/index.vue <script lang="ts"> import Lazyload from '..'; if (window.app) { window.app.use(Lazyload, { lazyComponent: true, lazyImage: true }); } </script> <template> <demo-block :title="t('basicUsage')"> <lazy-image v-for="img in imageList" :key="img" :src="img"> </lazy-image> </demo-block> </teamplate> ```