vue中的computed的this指向問題

今天在寫vue項目時,用到了computed計算屬性,遇到了使用箭頭函數出現this指向問題,這裏記錄下 1.箭頭函數中的this 箭頭函數內部的this是詞法作用域,由上下文確定 函數體內的this對象,就是定義時所在的對象,而不是使用時所在的對象 2.vue中的computed 使用箭頭函數 list: () => { console.log(this) } 不使用箭頭函數 allFig
相關文章
相關標籤/搜索