feat: add config variable menu

This commit is contained in:
amazuecos
2024-10-02 18:32:52 +00:00
parent 8617553dea
commit 8b10aa655a
14 changed files with 599 additions and 3 deletions

View File

@ -0,0 +1,14 @@
class Modal{
constructor(domItem){
this.item = domItem
}
toggle(){
this.item.modal('toggle');
}
show(){
this.item.modal('show');
}
}
export default Modal;