本文主要是介绍This experimental syntax requires enabling one of the following parser plugin(s): “decorators”,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
解决方式:
React的decorators装饰器报错@_程序燕的博客-CSDN博客_react 装饰器报错
5. 在项目根目录下创建 .babelrc 并写入以下内容
{
"presets": [
"@babel/preset-env"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
]
}
————————————————
版权声明:本文为CSDN博主「程序燕」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/lfy_wybss/article/details/122079178
这篇关于This experimental syntax requires enabling one of the following parser plugin(s): “decorators”的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!