qq_云水边静沐暖阳_04205942
2019-07-19 14:35
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="root">
姓:<input type="text" v-model="firstName"/>
名:<input type="text" v-model="lastName"/>
<div>{{fullName}}</div>
</div>
<script type="text/javascript">
new Vue({
el:"#root",
data:{
firsrName:'',
lastName:'',
},
computed :{
fullName:function(){
return this.firstName +this.lastName
}
}
})
</script>
</body>
</html>
哦,代码写错了firsrName:'',
vue2.5入门
146742 学习 · 657 问题
相似问题