import Service from '@ember/service'; export default Service.extend({ isShowModal : false, hide() { this.set("isShowModal", false); }, show() { this.set("isShowModal", true); }, });