name: 'wrap-scroll',
props: Scroll.props,
emits: Scroll.emits,
render(ctx) {
return h(Scroll, mergeProps({
// ref: 'scrollRef'
ref: Scroll.rootRef
}, ctx.$props, {
onScroll: (e) => {
ctx.$emit('scroll', e)
}
}), {
default: withCtx(() => {
return [renderSlot(ctx.$slots, 'default')]
})
})
},
props: Scroll.props, emits: Scroll.emits, 这些都用的是基础组件中数据,mergeProps中的ref可以直接写基础组件的Scroll.rootRef吗
慕课网明星讲师黄轶深度讲解 Vue3.0 ,提升的不止是Vue代码能力
了解课程