Package @glimmer/tracking
public
In order to tell Ember a value might change, we need to mark it as trackable. Trackable values are values that:
- Can change over their component’s lifetime and
- Should cause Ember to rerender if and when they change
We can do this by marking the field with the @tracked
decorator.