记录v-solt的几种写法

发布时间 2023-03-22 21:15:53作者: ZihangChu

最近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>