<script> new Vue({ computed:{ a: function(){ return this.b+1 }, b: function () { return (this.a||0)+1 } } }) </script> <div>{{Vue.a}}</div>
← 普通函数和箭头函数this指向问题 Vue3原理→