参考:https://blog.youkuaiyun.com/m0_51969330/article/details/119181612
对比一下vue2,写一个简单修改简单示例:
在vue2中我们定义一个插槽这么写:
<h1 slot="contrite" class="title">内容</h1>
在vue3中我们修改成如下写法
<template v-slot:contrite>
<h1 class="title">内容</h1>
</template>
it works