美文网首页
2018-09-23

2018-09-23

作者: 你昵称已被使用了 | 来源:发表于2018-09-23 19:09 被阅读5次

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>子给父传值</title>
    </head>
    <body>
    <div class="itany">
    <father></father>
    </div>
    <script src="./vue.js"></script>
    <script>
    Vue.component('father',{
    template:<div> <h1>{{num2}}</h1> <child @meth='the'></child> </div>,
    data:function(){
    return{
    num2:''
    }
    },
    methods:{
    the:function(txt){
    this.num2=txt
    }
    }
    })
    Vue.component('child',{
    template:<button @click="show">传给父元素</button>,
    data:function(){
    return{
    num:'我是子组件,我要传值给父组件'
    }
    },
    methods:{
    show:function(){
    this.$emit('meth',this.num)
    }
    }
    })
    new Vue({
    el:'.itany'
    })
    </script>
    </body>
    </html>

    相关文章

      网友评论

          本文标题:2018-09-23

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