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
}
}
});
网友评论