Editar movimientos

This commit is contained in:
Juan Pablo Vial
2024-10-01 13:11:15 -03:00
parent a4da8d8624
commit 599880ae27
14 changed files with 766 additions and 615 deletions

View File

@ -0,0 +1,16 @@
<script>
class LoadingHandler {
props
constructor(ids) {
this.props = {
...ids
}
}
show() {
$(this.props.id).addClass('loading')
}
hide() {
$(this.props.id).removeClass('loading')
}
}
</script>