wizard-custom-action.js.es6 454 B

1234567891011
  1. export default Ember.Component.extend({
  2. types: ['create_topic', 'update_profile', 'send_message'],
  3. profileFields: ['name', 'username', 'email'],
  4. createTopic: Ember.computed.equal('action.type', 'create_topic'),
  5. updateProfile: Ember.computed.equal('action.type', 'update_profile'),
  6. sendMessage: Ember.computed.equal('action.type', 'send_message'),
  7. test: function() {
  8. console.log(this.get('stepFields'));
  9. }.observes('stepFields.[]')
  10. });