Vue lifecycle changes

destroyed -> unmounted, beforeDestroy -> beforeUnmount
This commit is contained in:
N-Pex 2025-05-13 16:12:05 +02:00
parent ae312db784
commit 2c5b386af9
18 changed files with 20 additions and 20 deletions

View file

@ -136,7 +136,7 @@ export default {
document.body.classList.add("dark");
this.$audioPlayer.setAutoplay(false);
},
beforeDestroy() {
beforeUnmount() {
document.body.classList.remove("dark");
},
computed: {

View file

@ -65,7 +65,7 @@ export default {
}
}
},
beforeDestroy() {
beforeUnmount() {
document.body.classList.remove("dark");
},
computed: {