v-model组件理解

 Vue的确很好玩,但是有时候方向盘打得太急,转弯甩到外太空云里雾里~~~~我在这里,以下是今天的主题关于v-model的理解,关于官方文档中使用自定义事件的表单输入组件这个案例个人理解其实是一个内部定义的v-model组件,可以在自定义子组件时用model:{prop:xx,event:xx}来显示声明:

html:

	

js:


valueq是博主自己在理解官网demo的时候踩了坑此处特意标注一下,这个例子为理解用作其他用途的v-model做了铺垫,以下是一个小小的简单的例子:

html:


js:

Vue. component( "my-checkbox",{
     template: "\
        
        apple\
        \
    ",
     model:{
         prop: 'checked',
         event: 'change'
    },
     props:{
         cccc: true,
         sss: "hello world"
    },
     methods:{
         say: function(){
             this. $emit( 'change', alert( 1111));
        }
    }
});
new Vue({
     el: "#app",
     data:{
         foo: ''
    }
})





























不知道为了什么。。。忧愁它围绕着我。。。我每天都在祈祷。。。快让我吃吃吃饱。。。

你可能感兴趣的:(v-model组件理解)