Wait until visible

Ember try to resolve all Promisse before render. So you could use a dump promisse. Or control it using a timeout javacirpt

didInsertElement: function() {
    let cmp = this;
    setTimeout( () => {
       cmp.set("loading", false);
       }, 3000);
    this.set("register-as', this);
}
1 Like