slot插槽
最简单的插槽
父组件
<script setup>
import MsgBox from "@/components/msgBox.vue";
</script>
<template>
<MsgBox>
马赫太帅了
</MsgBox>
</template>
<style scoped>
</style>
子组件
<script setup>
</script>
<template>
<div style="border: 2px black solid">
<p>mahe666</p>
<slot />
</div>
</template>
<style scoped>
</style>