最近vue2/vue3混着写经常出现插槽写法的混淆
下面记录一些vue2中作用域和具名插槽使用时的写法
v-slot使用方式1: <template v-slot:operate="{ row }"><template> 则可替换为: <template slot="operate" slot-scope="{ row }"></template> v-slot使用方式2: <template v-slot="{ row }"><template> 则可替换为: <template slot-scope="row"></template>
标签:slot,记录,插槽,几种,vue2,solt,写法 From: https://www.cnblogs.com/SadicZhou/p/17244671.html