You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, when I want to append a Class based Maquette component, I have to do this: let dateInput = new DateInput(); projector.initialize(dateInput.renderMaquette.bind(dateInput));
It would be nice if projector.initialize would be able to do the binding for me, so I would only have to pass in a Class: projector.initialize(new DateInput()).
This would also require a change in MaquetteQuery on the initialize method.
The text was updated successfully, but these errors were encountered:
Right now, when I want to append a Class based Maquette component, I have to do this:
let dateInput = new DateInput(); projector.initialize(dateInput.renderMaquette.bind(dateInput));
It would be nice if
projector.initialize
would be able to do the binding for me, so I would only have to pass in a Class:projector.initialize(new DateInput())
.This would also require a change in MaquetteQuery on the
initialize
method.The text was updated successfully, but these errors were encountered: