美文网首页
vue sync 修饰符

vue sync 修饰符

作者: _lamuda | 来源:发表于2019-02-25 20:30 被阅读0次

    sync 修饰符

    子组件

    
    <template>
    
      <div>
    
        <div @click="updateEvent">{{innertext}}</div>   
    
      </div>
    
    </template>
    
    <script>
    
        export default{
    
            name:'hello',
    
            props:{
    
              innertext:String 
    
            },
    
            methods:{
    
                updateEvent(){
    
                    this.$emit("update:innertext",'789')
    
                }
    
        }
    
        }
    
    </script>
    
    

    父组件

    
    <template>
    
      <div id="app">
    
        <hello :innertext.sync="content"></hello>
    
      </div>
    
    </template>
    
    <script>
    
        import hello from "@/components/hello";
    
        export default{
    
            components:{
    
                hello
    
            },
    
            data(){
    
                return{
    
                    content:'123'
    
                }
    
            },
    
            methods:{
    
            }
    
        }
    
    </script>
    
    

    点击促发后content数据会变成子组件传的值

    相关文章

      网友评论

          本文标题:vue sync 修饰符

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