常規(guī)的在子組件定義具名插槽
父組件插槽在vue3有變化 不支持<slot name="footer">
在template 中循環(huán)
<template v-for="(item,i) in list" #[item.key]="{ row,index }" :key="item">{{item.title}}</template>
這樣可以直接使用
也有個(gè)問(wèn)題
其中 #[item.key]="{ row,index }" 不知道為啥 獲取不到row,index 的數(shù)據(jù) 只是展示夠用了