Vue 中怎样获取具名 slot 的 DOM 节点

Vue 2.6版本以后

ParentComponent:
ChildComponent:

子组件dom节点 通过this.$refs.content.children[0] 获取

Vue 2.6版本以前:

ParentComponent:
插入到子组件的内容
ChildComponent:

子组件dom节点 通过this.$slots.content[0].elm

注意:通过ref直接拿slot的节点 永远为undefined

你可能感兴趣的:(Vue 中怎样获取具名 slot 的 DOM 节点)