美文网首页
vue改版之插槽的使用

vue改版之插槽的使用

作者: 站着瞌睡 | 来源:发表于2019-02-28 12:03 被阅读0次

vue的2.6.0版本以后,对插槽的进行了改版,以下为使用方式

// 子组件
<template>
  <div class="child-comp">
    this is child component
    <!--非具名插槽-->
    <slot></slot>
    <!--具名插槽-->
    <slot name="child"></slot>
    <slot name="child1"></slot>
    <!--作用域插槽-->
    <slot name="child2" :user="user"></slot>
    <!--循环列表的具名作用域插槽-->
    <ul>
      <li v-for="item in lists" :key="item.id">
        <slot name="list" :message="item"></slot>
      </li>
    </ul>
  </div>
</template>
<script>
  export default {
    data () {
      return {
        user: {
          name: 'child2'
        }
      }
    },
    created () {
      this.lists = [{
       id: 1,
       year: 2019,
       age: 12
      }, {
       id: 2,
       year: 2019,
       age: 13
      }, {
       id: 3,
       year: 2019,
       age: 12
      }, {
       id: 1,
       year: 2019,
       age: 14
      }]
    }
  }
</script>
<style less scoped>
  .child-comp {
    background-color: #fafafa;
  }
</style>
// 父组件
<template>
    <div class="parent-comp">
        this is parent component
    <slot-child>
      <!--非具名插槽的使用-->
      <template v-slot:child>
        <div>
          this is  default child component
        </div>
      </template>
      <!--具名插槽动态使用-->
      <template v-slot:[slotType]>
        <div>
          this is  {{slotType}} component
        </div>
      </template>
      <!--作用域插槽的使用-->
      <template v-slot:child2="comp">
        <div>
          this is  second child component<br/>
          <span>component name: {{comp.user.name}}</span>
        </div>
      </template>
      <!--具名作用域插槽的循环列表使用-->
      <template v-slot:list="{message}">
          <div>
            <p>year: {{message.year}}</p>
            <p>age: {{message.age}}</p>
          </div>
      </template>
    </slot-child>
    <button @click="changeSlot">change slot</button>
    </div>
</template>
<script>
import SlotChild from './SlotChild.vue'

export default {
  components: {
    SlotChild
  },
    data () {
    return {
      name: 'parent',
      slotType: 'child'
    }
    },
  methods: {
    changeSlot () {
      if (this.slotType === 'child') {
        this.slotType = 'child1'
      } else if (this.slotType === 'child1') {
        this.slotType = 'child'
      }
    }
  }
}
</script>
<style less scoped>
  .parent-comp {
    background-color: #f2f2f2;
  }
</style>
结果

相关文章

  • vue改版之插槽的使用

    vue的2.6.0版本以后,对插槽的进行了改版,以下为使用方式

  • vue插槽

    vue插槽slot的理解与使用 vue slot插槽的使用介绍及总结

  • (十八)补充-Vue3中插槽的使用

    本章我们将了解到的是vue3中常用插槽的使用; vue3中的插槽是在用的时候和vue2的区别略有不同,常见插槽使用...

  • vue 插槽的使用

    vue 插槽手册 深入理解vue中的slot与slot-scope 插槽的使用其实是很简单首先要明白插槽是使用在子...

  • 2020-07-23 一次性讲明白vue插槽slot

    vue插槽slot 一、前言 vue官方文档中在"组件基础"内容中提到组件可以通过插槽分发内容,那插槽是怎么使用的...

  • vue插槽slot

    vue插槽slot 一、前言 vue官方文档中在"组件基础"内容中提到组件可以通过插槽分发内容,那插槽是怎么使用的...

  • 18、Vue3 作用域插槽

    作用域插槽:让插槽内容能够访问子组件中,vue2中作用域插槽使用slot-scope,vue3中使用v-slot ...

  • vue插槽

    vue插槽使用 1.基本插槽实现父级设置 子级设置 2、使用name设置插槽显示隐藏父组件使用v-slot绑定 子...

  • Vue插槽slot

    使用了那么久的vue,到现在才知道vue自带的组件插槽slot,说真的,插槽的作用在一些场景下非常有用。 插槽分为...

  • 插槽v-slot

    父子组件插槽的使用 父组件product.vue 子组件 ProductParam.vue

网友评论

      本文标题:vue改版之插槽的使用

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