Scope slot (4-7)

Scope slot

In fact, it was originally intended to use props to pass values, but now slot-scope=“props” is used directly to use slots.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src='./vue.js'></script>
</head>
<body>
   
    <div id="root">
        <child>
            <template slot-scope="props">
                <h1>{
   
   {props.item}}</h1>
            </template>
        </child>
    </div>
   
   
   <script>
       
        Vue.component('child', {
     
     
           data: function() {
     
     
                return {
     
     
                    list: [1, 2, 3, 4]
                }
           },
           template: `<div>
                        <ul>
                            <slot
                                v-for="item of list"
                                :item=item
                            ></slot>
                        </ul>
                     </div>`
           
        })

        var vm = new Vue({
     
     
            el: '#root'
        })
    </script>
</body>
</html>

Guess you like

Origin blog.csdn.net/weixin_45647118/article/details/114001477