abstract:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Vue两个数字相加</title> <script src="https://cdn.bo
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Vue两个数字相加</title> <script src="https://cdn.bootcss.com/vue/2.6.10/vue.common.dev.js"></script> </head> <body> <div id="box"> 请输入数字x: <input type="text" v-model.number="x"> <br> 请输入数字y: <input type="text" v-model.number="y"> <br> 当前x的值: <p>{{x}}</p> 当前y的值: <p>{{y}}</p> 合计是: <p :style="red">{{total}}</p> </div> <script> new Vue({ //设置挂载点 el: '#box', data: { x: '', y: '', red: 'color:red' }, computed: { total: function () { return (this.x + this.y); } } }) </script> </body> </html>
Correcting teacher:天蓬老师Correction time:2019-04-29 15:22:59
Teacher's summary:不看作业 都不知道我还录过这个课程, 更多关于Vue.js的课程 , 可以到html.cn站上观看, 有我录制的完整的Vus.js入门课程