vue组件的配置属性


vue组件的声明语法:

Vue.component('component-name',{

template:'<p>段落{{prop1}} {{prop2}}</p>',

data:function(){

return {prop1:'aa',prop2:'bb'}

},

methods:{

fn1:function(){},

fn2:function(){}

},

props:['value','label','custom'],

render:function(createElement){

return createElement('div','hello,world')

}

})

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM