在VUE2中,使用
<div slot-scope=”scope”></div>
在VUE3中已经废弃,
VUE3统一使用Template处理:
1 2 3 4 |
<template #default="scope"> <div> </div> </template> |
在VUE2中,使用
<div slot-scope=”scope”></div>
在VUE3中已经废弃,
VUE3统一使用Template处理:
1 2 3 4 |
<template #default="scope"> <div> </div> </template> |