美文网首页
组件的嵌套(父给子传 用属性prop)

组件的嵌套(父给子传 用属性prop)

作者: SuperHong521 | 来源:发表于2018-09-19 15:23 被阅读0次
    <div class='box'>
              <my-father></my-father>
          </div>
          <script src="js/vue.js"></script>
          <script>
              Vue.component("my-father",{
                  template:`
                        <div>
                            <my-child v-bind:til="title"></my-child>
                            <my-son v-bind:lis="list"></my-son>
                        </div>
                    `,
                  data:function(){
                      return{
                          list:["apple","banana","pear"],
                          title:"水果列表"
                      }
                  }
              })
               Vue.component("my-child",{
                  props:["til"],
                  template:`
                        <h1>{{til}}</h1>
                    `
              })
              Vue.component("my-son",{
                  props:["lis"],
                  template:`
                        <ul>
                            <li v-for="value in lis">{{value}}</li>
                        </ul>
                    `
              })
                new Vue({
                    el:".box"
                })
        </script>
    
    QQ图片20180919152257.png

    相关文章

      网友评论

          本文标题:组件的嵌套(父给子传 用属性prop)

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