EmberJs新项目引发装饰类属性失败

k7fdbhmy  于 2022-10-20  发布在  其他
关注(0)|答案(1)|浏览(160)

我尝试使用ember-cli生成本地项目,但当访问localhost:4200时,我遇到了以下错误:

Error occurred:

- While rendering:
  -top-level
    application

Uncaught Error: Decorating class property failed. Please ensure that proposal-class-properties is enabled and runs after the decorators transform.

ember-v给出了:

ember-cli: 3.28.4
node: 16.13.1
os: darwin x64

请帮忙指出原因。
谢谢

xqk2d5yq

xqk2d5yq1#

在你的包裹里。json更改

"ember-cli-babel": "^7.26.6"

"ember-cli-babel": "7.26.6"

答案归功于Ember Discord社区

相关问题