10 lines
166 B
Plaintext
10 lines
166 B
Plaintext
|
export default Ember.Component.extend({
|
||
|
classNames: ["item"],
|
||
|
|
||
|
actions: {
|
||
|
remove() {
|
||
|
this.sendAction('removeAction', this.get('member'));
|
||
|
}
|
||
|
}
|
||
|
});
|