对象,属性,方法,属性绑定
2019-01-14 本文已影响0人
王撕葱_74dd
vue创建在js里面
对象的创建方法
new Vue({
el:"#div1",
data:{
name:"wr",
age:"22",
website:"http://www.baidu.com",
site:"<a href='http://www.baidu.com'>baidu</a>"
}
methods:{
happy:function(b){
return "happy new year" + b + this.name
}
}
});