export default () => ({ show: false, open() { this.show = true; }, close() { this.show = false; }, isOpen() { return this.show === true; }, init() { window.addEventListener("show-player-modal", (event) => { this.open(); }); } })