《Vue3 六》插槽 Slot

插槽可以让组件的使用者来决定组件中的某一块区域到底存放什么元素和内容。

使用插槽:

插槽的使用过程其实就是抽取共性、预留不同。将共同的元素、内容依然留在组件内进行封装;将不同的元素使用 slot 作为占位,让外部决定到底显示什么样的元素。

复制代码
// App.vue
<template>
  <!-- 2. 在父组件中调用子组件时,子组件开始标签和结束标签之间的内容将会被插入到子组件中插槽中 -->
  <AppContent>
    <button>按钮</button>
  </AppContent>

  <AppContent>
    <a href="http:www.com">百度一下</a>
  </AppContent>
</template>

<script>
import AppContent from './components/AppContent'

export default {
  components: {
    AppContent,
  }
}
</script>

<style scoped>
</style>

// AppContent.vue
<template>
 <div>
  <h1>内容标题</h1>
  <!-- 在子组件中预留插槽 -->
  <slot></slot>
 </div>
</template>

<script>
export default {
}
</script>

<style scoped>
</style>

插槽的默认内容:

<slot></slot>元素开始标签和结束标签之间的内容会作为插槽的默认内容,插槽的默认内容只会在没有提供插入的内容时显示。

复制代码
// App.vue
<template>
  <!-- 在父组件中调用子组件时,不提供插槽的内容 -->
  <AppContent />
</template>

<script>
import AppContent from './components/AppContent'

export default {
  components: {
    AppContent,
  }
}
</script>

<style scoped>
</style>

// AppContent.vue
<template>
 <div>
  <h1>内容标题</h1>
  <slot>
    <!-- <slot></slot> 开始标签和结束标签之间的内容会作为插槽的默认内容显示 -->
    <div>这是插槽的默认内容</div>
  </slot>
 </div>
</template>

<script>
export default {
}
</script>

<style scoped>
</style>

具名插槽:

具名插槽:就是给插槽命名,通过 <slot> 元素的 name 属性可以给插槽命名。这样当一个组件中有多个插槽时,就可以区分出来要插入的内容是要插入哪个插槽中。

一个不带 name 的插槽,默认隐含的名字是 default。

复制代码
// App.vue
<template>
  <NavBar>
    <!-- 2. 在父组件中,使用 template 元素包裹要插入到插槽中的内容,通过 v-slot:插槽的名称 来决定要插入哪个插槽中 -->
    <!-- v-slot:[变量名] 可以通过这种方式来动态地绑定插槽的名称 -->
    <!-- v-slot 的缩写为 # -->
    <template v-slot:left>
      <button>返回</button>
    </template>
    <template v-slot:center>
      <input />
    </template>
    <template v-slot:right>
      <button>搜索</button>
    </template>
  </NavBar>
</template>

<script>
import NavBar from './components/NavBar'

export default {
  components: {
    NavBar,
  }
}
</script>

<style scoped>
</style>

// NavBar.vue
<template>
 <div class='navbar'>
    <div class="left">
        <!-- 1. 在子组件中通过 name 属性给插槽命名 -->
        <slot name="left"></slot>
    </div>   
    <div class="center">
        <slot name="center"></slot>
    </div> 
    <div class="right">
        <slot name="right"></slot>
    </div> 
 </div>
</template>

<script>
export default {
}
</script>

<style scoped>
</style

作用域插槽:

作用域插槽的核心就是能够将子组件中的数据传递给父组件的插槽来使用。

复制代码
// App.vue
<template>
  <AppContent>
    <!-- 2. 在父组件中,使用 template 元素包裹要插入到插槽中的内容,通过 v-slot:插槽名称="slotProps" 可以获取到子组件中指定插槽传递过来的数据 -->
    <template v-slot:default="slotProps">
      <p>{{ slotProps.content }}</p>
    </template>
  </AppContent>
</template>

<script>
import AppContent from './components/AppContent'

export default {
  components: {
    AppContent,
  }
}
</script>

<style scoped>
</style>

// AppContent.vue
<template>
 <div>
    <h1>子组件的标题</h1>
    <!-- 1. 在子组件中,通过给 slot 元素添加属性的方式给父组件传递数据 -->
    <slot content="子组件的内容"></slot>
 </div>
</template>

<script>
export default {
}
</script>

<style scoped>
</style>
相关推荐
floret. 小花1 天前
Vue3 + Electron 知识点总结 · 2026-03-21
前端·面试·electron·学习笔记·vue3
木斯佳2 天前
前端八股文面经大全:小红书前端一二面OC(下)·(2026-03-17)·面经深度解析
前端·vue3·proxy·八股·响应式
沙振宇2 天前
【Web】使用Vue3+PlayCanvas开发3D游戏(六)模拟自驾场景SR+3D可视化
前端·游戏·3d·vue3·playcanvas
小鲤鱼ya2 天前
vue3 + ts + uni-app 移动端封装图片上传添加水印
前端·typescript·uni-app·vue3
floret. 小花2 天前
Vue3 知识点总结 · 2026-03-20
前端·面试·electron·学习笔记·vue3
January12072 天前
VBen Admin 实战:身份证号自动填充出生年月
vue3·vben
哆啦A梦15883 天前
java项目在后端做跨域配置
java·vue3
路光.5 天前
uniappVue2升级Vue3内存溢出解决方式
vue·vue3·uniapp
沙振宇5 天前
【Web】使用 Vue3+PlayCanvas 开发 3D 游戏(五)3D 模型鼠标交互控制
3d·vue3·鼠标·playcanvas
nibabaoo8 天前
前端开发攻略---Vue3项目中实现指定区域的打印预览与 PDF 导出功能
vue3·js·打印预览pdf