123movies-seo/resources/js/components/PlayerModal.js

20 lines
379 B
JavaScript
Raw Permalink Normal View History

2024-08-24 23:08:42 +03:00
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();
});
}
})