import Component from "@ember/component"; import computed from "ember-addons/ember-computed-decorators"; export default Component.extend({ classNameBindings: [":wizard-step-form", "customStepClass"], @computed("step.id") customStepClass: stepId => `wizard-step-${stepId}` });