• 【vue3】匿名插槽,具名插槽,作用域插槽,动态插槽


    注意!

    匿名插槽有name值,为default

    • 匿名插槽有name值,为default
    • 作用域插槽—可以把子组件的值传给父组件使用
    • v-slot: 可以简写成 #
    
    //父级
    <template>
    
        <Com9>
            <template v-slot>
                这里是匿名插槽
            template>
            <template #header>
                这里是具名插槽-header
            template>
            <template v-slot:footer>
                这里是具名插槽-footer
            template>
    
            <template v-slot:namespace="{list,test}">
                <p v-for="(item, index) in list" :key="index">
                    这是作用域插槽---{{ item?.name }}---{{ test }}
                p>
            template>
    
            <template #[slotName]>
                <p>这里是动态插槽---{{ slotName }}p>
            template>
        Com9>
        <button @click="changeSlot('header')">插入headerbutton>
        <button @click="changeSlot('default')">插入mainbutton>
        <button @click="changeSlot('footer')">插入footerbutton>
    
    template>
    
    <script setup lang='ts'>
        import { ref,reactive } from 'vue'
        import Com9 from '../components/MySlot.vue'
    
        let slotName = ref<string>('header')
        const changeSlot = (string:string) =>{
            slotName.value = string
        }
    
    
    script>
    <style scoped lang='scss'>
    
    style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    
    //子集
    <template>
    
        <div class="header">
            <slot name="header">slot>
        div>
        <div class="main">
            <slot>slot>
    
            
            <slot :list="person" :test="'test'" name="namespace">slot>
        div>
        <div class="footer">
            <slot name="footer">slot>
        div>
    
    template>
    
    <script setup lang='ts'>
        import { reactive } from 'vue'
    
        type tobj = {
            name:string,
            age:number
        }
    
        const person = reactive<tobj []>([
            {
                name:'张三',
                age:12
            },
            {
                name:'李四',
                age:18
            },
            {
                name:'小明',
                age:18
            },
            {
                name:'小红',
                age:18
            }
        ])
    
    script>
    <style scoped lang='scss'>
    .header{
        width: 400px;
        min-height: 100px;
        background-color: red;
        padding: 16px;
    }
    .main{
        width: 400px;
        min-height: 100px;
        background-color: rgb(0, 174, 255);
        padding: 16px;
    }
    .footer{
        width: 400px;
        min-height: 100px;
        background-color: rgb(255, 196, 0);
        padding: 16px;
    }
    style>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
  • 相关阅读:
    【Vue】Provide,Inject,模版 Ref 的用法
    肖sir___面试就业课__非技术面试题
    JavaWeb 文件上传和下载
    Redis专题-秒杀
    庚顿新一代实时数据库太快了,得用对数坐标轴放大看
    计算机网络入门基础篇——应用层
    运维 | 如何查看端口或程序占用情况 | linux
    vue源码分析(四)——vue 挂载($mount)的详细过程
    Charles 抓包工具教程(七) Charles- compose 创建模拟请求
    基于利用协议模拟工具解决工控CTF题
  • 原文地址:https://blog.csdn.net/weixin_44171757/article/details/133921665