vue2与vue3中具名插槽使用异同
vue2插槽
定义插槽
bash
<!-- 子组件 -->
<template>
<div>
<slot name="header"></slot>
</div>
</template>
使用插槽(slot属性)
bash
<!-- 父组件 -->
<template>
<child-component>
<template slot="header">
<!-- 这里的内容将填充到 header 具名插槽 -->
</template>
</child-component>
</template>
vue3插槽
定义插槽
同vue2定义插槽。
使用插槽(v-slot指令
)
bash
<!-- 父组件 -->
<template>
<child-component>
<template v-slot:header="headerProps">
<!-- 名为header的具名插槽,并且插槽的作用域数据被绑定到headerProps变量上 -->
</template>
</child-component>
</template>
v-slot指令的简写形式
,如下:
bash
<template>
<child-component>
<template #header="headerProps">
<!-- 这与上面的完整形式是等效的,#header是v-slot:header的简写 -->
</template>
</child-component>
</template>
异同总结
Vue3中引入了
v-slot指令
,它允许你更明确地指定插槽的内容。在Vue3中,你不再需要在标签上使用slot属性来指定插槽的名称,而是直接在内部使用v-slot指令,并指定插槽的名称。当然,在Vue3中,仍然可以使用Vue2的语法,但是推荐使用新的v-slot指令,因为它提供了更清晰的语法和一些新特性,比如作用域插槽的改进。