UNPKG

sweetpea

Version:

Signal and Web Component Enhanced Web Apps

23 lines (15 loc) 234 B
export default class View { #garbage = []; core; constructor({core}){ this.core = core; } mount(){ } destroy(){ this.#garbage.map(o=>o.subscription()) } flip(card){ this.core.flipTo(card); } }