美文网首页
Vue中 的作用域插槽

Vue中 的作用域插槽

作者: 云凡的云凡 | 来源:发表于2020-10-12 22:44 被阅读0次

    逻辑:父组件调用子组件的时候,给子组件传了一个插槽,这个插槽叫做作用域插槽,作用域插槽必须是template开头和结尾的一个内容,同时这个插槽要声明(slot-scope)我要接收的数据都放在哪?都放在props里,还要告诉子组件一个模板的信息,也就是接收到props应该怎么展示(h1)。

    应用场景:当子组件做循环,它的内容应该由外部传进来的时候,这个时候我们就用作用域插槽。
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>17Vue中 的作用域插槽.html</title>
        <script src="./vue.js"></script>
    </head>
    
    <body>
        <div id="app">
            <child>
                <template slot-scope="props">
                    <li>{{props.item}}hello</li>
                </template>
            </child>
            </slot>
        </div>
        <script>
            Vue.component('child', {
                data: function () {
                    return {
                        list: [1, 2, 3, 4, 5]
                    }
                },
                template: `
                <div>
                    <ul>
                      <slot v-for="item of list" :item=item>
                    </ul>
                </div>
                `
            })
            var vm = new Vue({
                el: '#app'
            })
    
        </script>
    </body>
    
    </html>
    

    相关文章

      网友评论

          本文标题:Vue中 的作用域插槽

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