使用vue開發一個小項目的時候,由于模板內的style需要使用計算屬性,在computed內部計算出的值卻無法使用;在data內部進行了檢測,發現this是可以檢測到的,但是this下的多個屬性均為undefined貼上代碼computed:{ offsetTop:function(){ return (this.$el.offsetWidth-this.$el.offsetHeight)/2+'px'; }},data:function(){ console.log(this); console.log(this.offsetTop); return{ styleObject: { top: this.offsetTop+'px' } }},求路過的大神幫看看是怎么回事。
使用vue的時候,在data內部檢測this可以檢測到,但是this下的屬性
翻過高山走不出你
2018-10-09 16:17:33