Skip to content

Latest commit

 

History

History

object

Ember.Object

Usage

actions⇥

actions: {
  ${1:// body}
}

alias⇥

computed.alias('${1:property}')

computed⇥

computed('${1:property}', function() {
  ${2:// body}
}),

get⇥

${1:this}.get('${2}');

init⇥

init() {
  this._super(...arguments);
  ${1}
},

inject⇥

inject.service(${1}),

lget⇥

let $1 = ${2:this}.get('$1');

observer⇥

observer('${1:property}', function() {
  ${2:// body}
}),

set⇥

${1:this}.set('${2}', ${3});

super⇥

this._super(...arguments);