Ember.Computed 不是函数

Ember.Computed is not a function

我正在尝试使用 ember-chart 使用 Ember 设置简单的应用程序: https://www.npmjs.com/package/ember-cli-chart

我有我的 charts.hbs 文件:

<div class="container-fluid">
    <div class="row">
        <div class="col-md-12">
        {{#toggle-section}}
            <div class="chart-container">
                {{ember-chart type=CHARTTYPE data=CHARTDATA options=CHARTOPTIONS width=CHARTWIDTH height=CHARTHEIGHT}}
            </div>
        {{/toggle-section}}
        </div>
    </div>
</div>

和我的 charts.js 控制器以及 Chart.js 文档中的示例:

import Controller from '@ember/controller';
import Ember from "ember";

export default Controller.extend({
    CHARTTYPE: 'bar',
    CHARTDATA: Ember.Computed('', function () {
        return {
            labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
            datasets: [{
                label: '# of Votes',
                data: [12, 19, 3, 5, 2, 3],
                backgroundColor: [
                    'rgba(255, 99, 132, 0.2)',
                    'rgba(54, 162, 235, 0.2)',
                    'rgba(255, 206, 86, 0.2)',
                    'rgba(75, 192, 192, 0.2)',
                    'rgba(153, 102, 255, 0.2)',
                    'rgba(255, 159, 64, 0.2)'
                ],
                borderColor: [
                    'rgba(255,99,132,1)',
                    'rgba(54, 162, 235, 1)',
                    'rgba(255, 206, 86, 1)',
                    'rgba(75, 192, 192, 1)',
                    'rgba(153, 102, 255, 1)',
                    'rgba(255, 159, 64, 1)'
                ],
                borderWidth: 1
            }]
        }
    }),
    CHARTOPTIONS: Ember.Computed('', function () {
        return {
            scales: {
                yAxes: [{
                    ticks: {
                        beginAtZero:true
                    }
                }]
            }
        }
    }),
    CHARTWIDTH: 500,
    CHARTHEIGHT: 500,
});

在 index.js 路线中,我重定向到图表路线:

beforeModel() {
    this.replaceWith('charts');
}

当我试图在 ember s 之后打开我的 localhost:4200 时,它在控制台中给我一个错误:

router.js:927 Error while processing route: index Ember.Computed is not a function TypeError: Ember.Computed is not a function

我试图寻找答案,但似乎没有任何效果。

函数小写:Ember.computed

使用这个导入也会更好:

import { computed } from '@ember/object';

避免为了访问计算函数而引入所有 Ember 框架。