一、在vscode下使用mobx,使用@observable修飾器時,編譯器會出現(xiàn)提示:
[js] Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning.
修復(fù)方式:
1.在項目的根目錄下如果有jsconfig.json文件的話,添加
"experimentalDecorators": true
2.沒有jsconfig.json文件的話,需要手動創(chuàng)建該文件,并添加上述配置項。