组件A
<div>
<template v-for="(row, index) in rows">
<tr>
<slot :row="row" :index="index">
</slot>
</tr>
</template>
</div>
组件B
<div>
<slot></slot>
</div>
组件C
<A :rows='list'>
<B>test</B>
</A>
组件A该如何向组件B传参呢?