跳到主要内容

具名插槽

2023年04月23日
柏拉文
越努力,越幸运

一、认识


二、语法


2.1 完整语法

<template>
<div>
<AComp>
<template v-slot:body1>
body1 哈哈哈哈哈
</template>
<template v-slot:body2>
body2 嘻嘻嘻嘻嘻嘻
</template>
</AComp>
</div>
</template>

<script>
import AComp from "./aComp.vue";

export default {
name: "App",
components: { AComp },
};
</script>

2.2 简写语法

<template>
<div>
<AComp>
<template #body1> 哈哈哈 </template>
<template #body2> 嘻嘻嘻 </template>
</AComp>
</div>
</template>

<script>
import AComp from "./aComp.vue";

export default {
name: "App",
components: { AComp },
};
</script>