一、在vscode下使用mobx,使用@observable修饰器时,编译器会出现提示:
[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.
修复方式:
1.在项目的根目录下如果有jsconfig.json文件的话,添加
"experimentalDecorators": true
2.没有jsconfig.json文件的话,需要手动创建该文件,并添加上述配置项。
网友评论