Clear button on calendar Emberjs

时光怂恿深爱的人放手 提交于 2020-06-29 06:42:09

问题


Adding a clear button for a calendar but I keep receiving "Nothing handled the action" Here is the .hbs file

<button class ="clearBtn" {{action "clear"}}> Clear </button>

.js controller file

   actions: {
      clear(){
          this.set(true, '')
        }
      },

What am I missing for the action to be called?

来源:https://stackoverflow.com/questions/62471945/clear-button-on-calendar-emberjs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!