• vue 插槽slot


    (1)
            父组件代码
            <chlid><h1>guojing</h1></child>
    
            子组件 child.vue
            <template>
                <div>
                    <p>afjladjfl</p>
                    <slot></slot>
                </div>
            </template>
    (2)具名插槽
            父组件代码(1)
            <child>
                <template slot="header">
                    <h1>Here might be a page title</h1>
                </template>
                <p>A paragraph for the main content.</p>
                <p>And another one.</p>
                <template slot="footer">
                    <p>Here's some contact info</p>
                </template>
            </child>
            或者:父组件代码(2)
            <child>
                <h1 slot="header">Here might be a page title</h1>
                <p>A paragraph for the main content.</p>
                <p>And another one.</p>
                <p slot="footer">Here's some contact info</p>
            </child>
    
            子组件child.vue
            <template>
                <div class="container">
                    <header>
                        <slot name="header"></slot>
                    </header>
                    <main>
                        <slot></slot>
                    </main>
                    <footer>
                        <slot name="footer"></slot>
                    </footer>
                </div>
            </template>
    (3)作用域插槽
            父组件代码
            <child>
                <template scope='xxx'>
                    <span>from parent</span>
                    <span>{{xxx.say}}</span>
                </template>
            </child>
    子组件 <template> <div> <slot :say="from child"></slot> </div> </template> 或者: 父组件代码 <child :childlist="items"> <template slot="name001" scope='xxx'> <li>{{xxx.thing}}</li> </template> </child> 子组件 <template> <ul> <slot name=:"name001" v-for="item in childlist" :thing="item.what"></slot> </ul> </template>
    工欲善其事 必先利其器
  • 相关阅读:
    halcon 2极坐标转笛卡尔坐标
    xmal随笔
    halcon 3焊点查找
    halcon 药丸查找
    halcon 1区域保存生成
    mokee源码下载
    多个DataTable的合并成一个新表
    代码分析工具
    SQL大量数据查询分页存储过程
    sqlite3使用简介
  • 原文地址:https://www.cnblogs.com/fengyouqi/p/9561719.html
Copyright © 2020-2023  润新知