I have made an ecommerce listing using css grid. I want to switch between gallery and list view but the performance is terrible. The browser locks up for 1 sec.
I thought it would be to just toggle that component section: {{#if this.galleryView}} <GalleryView @model=model /> {{else}} <ListingView @model=model /> {{/if}}
I tried addons such as ember-collection but this requires fixed sized listings where I wanted to use responsive grid.
Any ideas?
1 post - 1 participant