Skip to content

Instantly share code, notes, and snippets.

import Ember from 'ember';
export default Ember.Component.extend({
actions: {
setValue(newValue) {
this.sendAction('valueChanges', newValue);
},
toggleValue(newValue, isSelected) {
if (isSelected) {
this.send('addValue', newValue);