slot-scope 是vue2中的作用域插槽
在父组件 <template> 上使用特殊的 slot-scope attribute,可以接收子组件传递给插槽的 prop
父组件:
<template>
2023-02-13