Chartjs-Ember.Computed is not a function

5👍

The function is lowercase: Ember.computed

It would also be better to use this import:

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

to avoid having to bring in all of the Ember framework just to access the computed function.

Leave a comment