Vue中slot插槽作用与原理是什么

1、作用

  • 父组件向子组件传递内容

  • 扩展、复用、定制组件

2、插槽内心

2.1、默认插槽

把父组件中的数组,显示在子组件中,子组件通过一个slot插槽标签显示父组件中的数据。

子组件

<template>  <div class="slotChild">    <h5>{{msg}}</h5>    <slot>这是子组件插槽默认的值</slot>  </div></template><script>export default {  name: "slotChild",  data() {    return {      msg: "vue中的插槽---子组件"    }  }}</script>

父组件

<template>  <div class="slotStudy">    <h2>{{ msg }}</h2>    <SlotChild>      <p>这是父组件传入的值,将会替换子组件中slot中编写的默认值</p>    </SlotChild>  </div></template><script>import SlotChild from "@/components/slot/SlotChild";export default {  name: "slotStudy",  components: {SlotChild},  data() {    return {      msg: "vue中的插槽---父组件"    }  }}</script>

Vue中slot插槽作用与原理是什么

    <SlotChild></SlotChild>

Vue中slot插槽作用与原理是什么

2.2、具名插槽(命名插槽)

父组件中通过slot属性,给插槽命名,在子组件中通过slot标签,根据定义好的名字填充到对应的位置。这样就可以指定多个可区分的slot,在使用组件时灵活的进行插值。

子组件:

<template>  <div class="slotChild">    <h5>{{msg}}</h5>    <h2><slot name="h_1"></slot></h2>    <h3><slot name="h_2"></slot></h3>    <h4><slot name="h_3"></slot></h4>  </div></template><script>export default {  name: "slotChild",  data() {    return {      msg: "vue中的插槽---子组件"    }  }}</script>

父组件:

<template>  <div class="slotStudy">    <h2>{{ msg }}</h2>    <SlotChild>      <template v-slot:h_1>h2111111111的内容</template>      <!--      #简写-->      <template #h_2>h3222222的内容</template>      <template v-slot:h_3>h43333的内容</template>    </SlotChild>  </div></template><script>import SlotChild from "@/components/slot/SlotChild";export default {  name: "slotStudy",  components: {SlotChild},  data() {    return {      msg: "vue中的插槽---父组件"    }  }}</script>

Vue中slot插槽作用与原理是什么

2.3、作用域插槽

用得不多。

将子组件中data的数据传出,在父组件中使用。子组件渲染作用域插槽时,可以将子组件内部的数据传递给父组件,让父组件根据子组件的传递过来的数据决定如何渲染该插槽。在标签中通过v-slot=”要传过来的数据”来接收数据。

实现原理

实现原理:当子组件vm实例化时,获取到父组件传入的slot标签的内容,存放在vm. s l o t 中,默认插槽为 v m . slot中,默认插槽为vm. slot中,默认插槽为vm.slot.default,具名插槽为vm. s l o t . x x x , x x x 为插槽名,当组件执行渲染函数时候,遇到 s l o t 标签,使用 slot.xxx,xxx 为插槽名,当组件执行渲染函数时候,遇到slot标签,使用 slot.xxx,xxx为插槽名,当组件执行渲染函数时候,遇到slot标签,使用slot中的内容进行替换,此时可以为插槽传递数据,若存在数据,则可称该插槽为作用域插槽。

子组件:

<template>  <div class="slotChild">    <h5>{{ msg }}</h5>    <h2>      <slot :str="strDate" name="n_str">{{ strDate.name }}</slot>    </h2>    <h3>      <slot :str="strDate" name="j_str">{{ strDate.job }}</slot>    </h3>  </div></template><script>export default {  name: "slotChild",  data() {    return {      msg: "vue中的插槽---子组件",      strDate: {        name: "学习前端的小方同学",        job: "找工作中",        age:"我每年都是18"      }    }  }}</script>

父组件:

<template>  <div class="slotStudy">    <h2>{{ msg }}</h2>    <SlotChild>      <template #n_str="strProps">        {{ strProps.str.job }}      </template>      <template v-slot:j_str="strProps">        {{ strProps.str.age }}      </template>    </SlotChild>  </div></template><script>import SlotChild from "@/components/slot/SlotChild";export default {  name: "slotStudy",  components: {SlotChild},  data() {    return {      msg: "vue中的插槽---父组件"    }  }}</script>

Vue中slot插槽作用与原理是什么

“Vue中slot插槽作用与原理是什么”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!

文章标题:Vue中slot插槽作用与原理是什么,发布者:亿速云,转载请注明出处:https://worktile.com/kb/p/28976

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
亿速云的头像亿速云
上一篇 2022年9月22日 下午10:17
下一篇 2022年9月22日 下午10:18

相关推荐

  • 2024年9款优质CRM系统全方位解析

    文章介绍的工具有:纷享销客、Zoho CRM、八百客、红圈通、简道云、简信CRM、Salesforce、HubSpot CRM、Apptivo。 在选择合适的CRM系统时,许多企业面临着功能繁多、选择困难的痛点。对于中小企业来说,找到一个既能提高客户关系管理效率,又能适应业务扩展的CRM系统尤为重要…

    2024年7月25日
    1600
  • 数据库权限关系图表是什么

    数据库权限关系图表是一种以图表形式展示数据库权限分配和管理的工具。它可以有效地帮助我们理解和管理数据库中的各种权限关系。数据库权限关系图表主要包含以下几个部分:数据对象、用户(或用户组)、权限类型、权限级别、权限状态等。其中,数据对象是权限关系图表中的核心元素,它代表了数据库中的各种数据资源,如表、…

    2024年7月22日
    200
  • 诚信数据库是什么意思

    诚信数据库是一种收集、存储和管理个人或组织诚信信息的系统。它是一种用于评估和管理个人或组织行为的工具,通常由政府、商业组织或者非营利组织进行运营。诚信数据库的主要功能包括:1、评估个人或组织的诚信状况;2、提供决策支持;3、预防和控制风险;4、促进社会信用体系建设。 在这四大功能中,评估个人或组织的…

    2024年7月22日
    400
  • 数据库期末关系代数是什么

    关系代数是一种对关系进行操作的代数系统,是关系模型的数学基础,主要用于从关系数据库中检索数据。其操作包括选择、投影、并集、差集、笛卡尔积、连接、除法等。其中,选择操作是对关系中的元组进行筛选,只保留满足某一条件的元组;投影操作则是从关系中选择出一部分属性构造一个新的关系。 一、选择操作 选择操作是关…

    2024年7月22日
    700
  • mysql建立数据库用什么命令

    在MySQL中,我们使用"CREATE DATABASE"命令来创建数据库。这是一个非常简单且基础的命令,其语法为:CREATE DATABASE 数据库名。在这个命令中,“CREATE DATABASE”是固定的,而“数据库名”则是你要创建的数据库的名称,可以自己设定。例如,如…

    2024年7月22日
    500
注册PingCode 在线客服
站长微信
站长微信
电话联系

400-800-1024

工作日9:30-21:00在线

分享本页
返回顶部