一学就会的Vue slot插槽,真的不看看吗?(使用脚手架)

本文涉及的产品
.cn 域名,1个 12个月
简介: 简单的学习Vue slot插槽。

一、开始前的准备:


首先创建两个子组件,soltOne是基础使用,soltTwo是域名插槽使用,soltThree是演示父组件获取子组件内容,图片后的代码一定要注意,容易出现很多细节上的小问题。

image.png

import SoltOne from './components/soltOne.vue'
import SoltThree from './components/soltThree.vue'
import SoltTwo from './components/soltTwo.vue'
export default {
    name: 'app',
  components: {
    SoltOne,
    SoltTwo,
    SoltThree
  },


二、slot插槽的基本使用


子组件:

在子组件中使用 给值留下位置,可以得到父组件的值

<template>
<div>
    <strong>ERROR:</strong>
    <slot></slot>
</div>    
</template>
<script>
export default {
   name:'soltOne' 
}
</script>
<style>
</style>


父组件:

有Bug发生

展示效果:

image.png


以上就是插槽的最基本的使用


三、域名插槽的基本使用


子组件:

这里,我简单的划分了三个区域,一个头部,内容,尾部


头部和尾部 都给上了name:‘’让其获得域名

<template>
<div>
    <header>
        <slot name="header"></slot>
    </header>
    <main>
        <slot></slot>
    </main>
    <footer>
        <slot name="footer"></slot>
    </footer>
</div>    
</template>
<script>
export default {
    name:'soltTwo'
}
</script>
<style>
</style>


父组件:

在此内容下,p标签内只要对应子组件起的name名,就能把值赋值到想要的地方,没有name名的将会赋值到,子组件中没有name名的位置。

<solt-two>
  <p slot="header">头部信息</p>
  <p>主要内容1</p>
  <p>主要内容2</p>
  <p slot="footer">尾部信息</p>
</solt-two>


效果展示:

image.png


父组件还有一种,可以通过域名来实现插槽,使用v-slot:来获取子组件的域名,从而指定赋值,其中也可以添加多条内容,比上一种方法更完善。

<solt-two>
  <template v-slot:header>
     <p>头部信息1</p>
     <p>头部信息2</p>
  </template>
  <p>主要内容1</p>
  <p>主要内容2</p>
   <template v-slot:footer>
     <p>尾部信息1</p>
     <p>尾部信息2</p>
  </template>
</solt-two>

image.png

注意:

这里的顺序是根据子组件的顺序排列,父组件跟换域名位置,还是按照子组件的域名排序出现


内容会跟着父组件发生改变

<solt-two>
  <template v-slot:footer>
     <p>头部信息1</p>
     <p>头部信息2</p>
  </template>
  <p>主要内容1</p>
  <p>主要内容2</p>
   <template v-slot:header>
     <p>尾部信息1</p>
     <p>尾部信息2</p>
  </template>
</solt-two>


四、如何通过slot从子组件获取内容


子组件

这里需要注意的是,要将子组件的值进行v-bind绑定

<template>
   <div>
    <slot :son="list">
    </slot>
   </div> 
</template>
<script>
export default {
    name:'soltThree',
     data(){
    return{
      list:[1,2,3,4,5,6,7,8,9]
    }
  }
}
</script>
<style>
</style>


父组件

一下提供了四种,子组件的值可以使用v-for遍历,这里的list1是自己新起的名字,son是子组件绑定的,slot-scope这种方法逐步出现了淘汰, #default这种方法比较推荐,看起来就很简单好记

<solt-three>
  <template v-slot="list1">
      <div>{{list1.son}}</div>
  </template>
  </solt-three>
  <solt-three>
  <template v-slot:default="list1">
      <div>{{list1.son}}</div>
  </template>
  </solt-three>
  <solt-three>
  <template #default="list1">
  <ul>
      <li v-for="(item,index) in list1.son" :key="index">{{item}}</li>
  </ul>    
  </template>
  </solt-three>
<solt-three>
  <template slot-scope="list1">
      <div>{{list1.son}}</div>
  </template>
  </solt-three>


效果展示:


image.png

五、作用域插槽案例


父组件替换插槽的标签,但是内容是由子组件来提供。


当组件需要在多个父组件多个界面展示的时候,将内容放在子组件插槽中,父组件只需要告诉子组件使用什么方式展示界面。


子组件

<template >
  <div>
      <slot :data="pLanguage">
          <ul>
              <li v-for="(item, index) in pLanguage" :key="index">{{item}}</li>
            </ul>
      </slot>
    </div>  
</template>
<script>
export default {
   name:'oneText' ,
      data() {
        return {
          pLanguage:['JavaScript','Java','C++','C']
        }
      },
    }
</script>
<style>
</style>

父组件

<one-text></one-text>
    <one-text>
      <template #default="slot">
      <span>{{slot.data.join(' - ')}}</span>
      </template>
    </one-text>
    <one-text>
        <template #default="slot">
        <p><span v-for="(item, index) in slot.data" :key="index">{{item}}</span></p>   
        <span>{{slot.data.join(' * ')}}</span>
        </template>
    </one-text>


效果展示:

image.png



相关文章
|
7天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
7天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
6天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
6天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
JavaScript
初识 Vue(19)---(Vue 中使用插槽(slot))
Vue 中使用插槽(slot) 案例:子组件中的一部分内容是根据父组件传递来的 DOM 来进行显示 Vue 中使用插槽(slot) Vue.
1258 0
|
7天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
7天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
8天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
8天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
13天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发