vue2的写法 <template><el-table-column:prop="":label=""align="center"><templateslot-scope="scope"><!-- 透传事件和属性 --><slotv-on="$listeners"v-bind="scope"></slot></template></el-table-column></template>
是不是你这个 slot 对应错了,应该先接收一个默认插槽,默认插槽中在使用具名插槽。
vue3 中使用具名插槽传参slot template scope传递参数的写法? KenOscar 1k30294483 发布于 2023-03-23 山东 更新于 2023-03-24 需求背景 封装一个带有操作栏的table组件,其中操作栏是插槽,传入各种操作的按钮,点击获取每行的数据 子组件 <template