<template>
<div class="hello">
<form>
我的姓是:
<input type="text" v-model="f">
我的名是:
<input type="text" v-model="l">
我的姓名是:
我的姓名是{{r}}
</form>
</div>
</template>
<script>
export default {
data () {
return {
f:'王',
l:'五'
}
},
computed: {
r: function () {
return this.f + this. l
}
}
}
</script>
网友评论