简体   繁体   中英

Ember component event not tirggered

I have a sidenav component with a toggle button to open or close it.

/templates/components/side-nav.hbs

<div class="sidebar">
  <span role="button" class="toggle-menu svg-icons" {{ action 'toggle' on='click' }}></span>
</div>

components/side-nav.js

import Ember from 'ember';

export default Ember.Component.extend({
    actions: {
        toggle: function(){
            console.log('click');
        }
    }
});

/templates/application.hbs

<div class="wrapper">
    {{side-nav}}
    {{outlet}}
</div>

The event is not fired no matter what. I know this is basic stuff, but I've spent hours not being able to make it work.

You don't need to use on=click . Try just:

<span role="button" class="toggle-menu svg-icons" {{action 'toggle'}}></span>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM