插槽传参
模板组件
//name 插槽名称,:参数名=‘参数值’进行传参
<slot name='footer' :$index='123' :row='3'>
</slot>
接收参数
//v-slot:参数名=‘参数名’
<template v-slot:footer='scope'>
<el-button size="mini" type="text" @click="handleEdit(scope.$index, scope.row)">编辑</el-button>
</template>
网友评论