new Vue({ data: { length: 5, ➀ width: 3 ➀ }, computed: { area: function() { ➁ return this.length * this.width; ➁ } ➁ } });.
確定! 回上一頁