一.计算属性: main.js: var app = new Vue({ el: '#app', data: { math: 80, physics: 90, english: 30 }, computed: { sum: function(){ return this.math + this.physics + this.english; }, average: function(){ return Math.round((this.math + this.physics + this.eng…