美文网首页1024
18、Vue3 作用域插槽

18、Vue3 作用域插槽

作者: 圆梦人生 | 来源:发表于2021-02-05 08:37 被阅读0次

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

案例

  • components/slotcmp.vue
<template>
    <div>
        <ul>
            <li v-for="(item, index) in list">
                <slot :item="item" :index="index"></slot>
            </li>
        </ul>
    </div>
</template>

<script>
import { reactive } from 'vue'
export default {

    setup(){
        let list = reactive([
            { name: 'zs'  },
            { name: 'ls'  },
            { name: 'ww'  }
        ])
        return {
            list
        }
    }
}

</script>
  • demo.vue
<!--  -->
<template>
    <slatcmp v-slot="{item, index}">
        {{item.name}} == {{index}}
    </slatcmp>
</template>

<script>
import slatcmp from '/@/components/slotcmp.vue'
export default {
    components: {
        slatcmp
    }
}

</script>

相关文章

  • 18、Vue3 作用域插槽

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

  • 2.插槽

    匿名插槽 具名插槽 作用域插槽

  • vue----slot插槽

    插槽分类 匿名插槽 具名插槽 作用域插槽

  • jsx中插槽的写法

    作用域插槽 scopedSlots: (2.6.0+) 一个暴露传入的作用域插槽的对象。也以函数形式暴露普通插槽。...

  • vue3中的插槽

    插槽 默认插槽 具名插槽,v-slot可以简写为# 动态插槽 #[dynamicSlotName] 作用域插槽(...

  • Vue中 的作用域插槽

    逻辑:父组件调用子组件的时候,给子组件传了一个插槽,这个插槽叫做作用域插槽,作用域插槽必须是template开头和...

  • Vue-使用插槽

    二。具名卡槽 作用域插槽:插槽循环时使用

  • 2019-02-15 vue组件基础篇5

    作用域插槽续此例的用意主要是介绍作用域插槽的用法1.允许组件自定义应该如何渲染列表每一项。2.作用域插槽的使用场景...

  • vue中slot插槽的使用

    插槽的种类:1、默认插槽、具名插槽、作用域插槽、解构插槽、动态插槽几种。转原文:https://www.jians...

  • 插槽

    默认插槽: 具名插槽:slot name='footer' 作用域插槽:v-slot===slot-scope 默...

网友评论

    本文标题:18、Vue3 作用域插槽

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