vue debugger調試this爲undefined,但是可以console.log輸出

1 安裝依賴模塊 babel-plugin-transform-es2015-arrow-functions

npm i babel-plugin-transform-es2015-arrow-functions --save-dev

2 .babelrc或者是babel.config.js 配置文件中加入

plugins: [["transform-es2015-arrow-functions", { spec: true }]]

3 注:

我這邊發現原因是箭頭函數內的 this 被 babel 打包後重命名了導致

4 參考博客

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章