首页 > 其他分享 >记录v-solt的几种写法

记录v-solt的几种写法

时间:2023-03-22 17:00:51浏览次数:24  
标签:slot 记录 插槽 几种 vue2 solt 写法

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

相关文章