slot内容分发

作者: Young_Kind | 来源:发表于2018-06-11 16:04 被阅读29次

概述

  • 通俗地说,slot内容分发要解决的问题就是:
    父组件需要在子组件内放一些DOM,那么这些DOM是显示、不显示、在哪个地方显示、如何显示
  • 父组件在子组件内套的内容,默认是不显示的。
<template>
  <div id='parents'>
    <p>我是父组件</p>
    <children>
        <span>子组件内容</span><!--上面这行不会显示-->
    </children>
  </div>
</template>
<script>
  export default {
    components: {
      children: {  
        template: `<p>我是子组件:</p>`
      }
    }
  }
</script>

单个slot

即父组件放在子组件里的内容,插到了子组件的<slot></slot>位置;
注意,即使有多个标签,会一起被插入,相当于用父组件放在子组件里的标签,替换了<slot></slot>这个标签。

<template>
  <div id='parents'>
    <p>我是父组件</p>
    <children>
        <span>子组件内容</span>
        <span>子组件内容</span>
    </children>
  </div>
</template>
<script>
  export default {
    components: {
      children: {   
        template: `<p>我是子组件:<slot></slot></p>`
      }
    },
  }
</script>

具名slot

将放在子组件里的不同html标签放在不同的位置
父组件在要分发的标签里添加 slot=”name名” 属性
子组件在对应分发的位置的slot标签里,添加name=”name名” 属性,
然后就会将对应的标签放在对应的位置了。

<template>
  <div id='parents'>
    <p>我是父组件</p>
    <children>
        <span slot="first">子组件内容1</span>
        <span slot="second">子组件内容2</span>
    </children>
  </div>
</template>
<script>
  export default {
    components: {
      children: {   
        template: `<p>我是子组件:<slot name="first"></slot>---<slot name="second"></slot></p>`
      }
    },
  }
</script>

分发内容的作用域

被分发的内容的作用域,根据其所在模板决定,例如,以上标签,其在父组件的模板中(虽然其被子组件的children标签所包括,但由于他不在子组件的template属性中,因此不属于子组件),则受父组件所控制。

官方教程是这么说的:
父组件模板的内容在父组件作用域内编译;子组件模板的内容在子组件作用域内编译

<template>
  <div id='parents'>
    <p>我是父组件</p>
    <children>
        <span slot="first" @click="show">子组件内容1</span>
        <span slot="second">子组件内容2</span>
    </children>
  </div>
</template>
<script>
  export default {
    components: {
      children: {   
        template: `<p>我是子组件:<slot name="first"></slot>---<slot name="second"></slot></p>`
      }
    },
    methods:{
      show(){
        console.log('我是show方法')
      }
    }
  }
</script>

当没有分发内容时的提示:

假如父组件没有在子组件中放置有标签,或者是父组件在子组件中放置标签,但有slot属性,而子组件中没有该slot属性的标签,那么,子组件的slot标签,将不会起到任何作用。
除非,该slot标签内有内容,那么在无分发内容的时候,会显示该slot标签内的内容。

<template>
  <div id='parents'>
    <p>我是父组件</p>
    <children>
        <span slot="first" @click="show">子组件内容1</span>
    </children>
  </div>
</template>
<script>
  export default {
    components: {
      children: {    //这个无返回值,不会继续派发
        template: `<p>我是子组件:
                                    <slot name="first">如果父组件没定义first的slot,则显示这里的内容</slot>  <br>
                                    <slot name="second">如果父组件没定义second的slot,则显示这里的内容</slot>
                         </p>`
      }
    },
    methods:{
      show(){
        console.log('我是show方法')
      }
    }
  }
</script>

相关文章

  • slot是什么?有什么作用?原理是什么?

    slot又名插槽,是Vue的内容分发机制,组件内部的模板引擎使用slot元素作为承载分发内容的出口。插槽slot是...

  • slot(插槽)

    slot又称插槽,是Vue的内容分发机制,组件内部的模板引擎使用slot元素作为承载分发内容的出口。插槽slot是...

  • slot内容分发

    概述 通俗地说,slot内容分发要解决的问题就是:父组件需要在子组件内放一些DOM,那么这些DOM是显示、不显示、...

  • slot内容分发

    1.编写组件my-slot1;2.在组件里添加(默认插槽或者具名插槽); 3.调用该组件(my-slot1),往插...

  • slot内容分发

    slot: 位置;狭槽;水沟;硬币投币口 ---from有道词典个人理解为位置预占, 有新增则覆盖, 无则显示预占...

  • Slot 分发内容

    需要做个页面,涉及 查看、编辑,来列一下流程: 路由传 Id 过来,捕获 Id 使用 Ajax 获取这个 Id 的...

  • slot内容分发

    本意:位置、槽如果想显示wbs17022中的内容 => wbs17022...

  • slot分发内容

    一、slot定义 中文插槽,混合父组件的内容与子组件自已模板的方式其中 Vuejs 把 slot 元素作为原始内容...

  • 27.Vue slot内容分发-解构

    Vue slot的使用参考:26.Vue slot内容分发 什么是slot分发解构:官方定义:如果一个 JavaS...

  • vue 学习记录之slot分发内容

    slot分发内容 不具名slot用来备用插入,子组件只有不具名的slot时候,父组件才回调用slot内容,如果子组...

网友评论

    本文标题:slot内容分发

    本文链接:https://www.haomeiwen.com/subject/nxjheftx.html