* FadeOut for PopUp
All checks were successful
continuous-integration/drone/push Build is passing

* FadeIn for Dialog fix #6
This commit is contained in:
Artem Anufrij
2023-02-19 19:06:17 +01:00
parent 926947e7c9
commit 9e4e7d4697
4 changed files with 31 additions and 6 deletions

View File

@@ -27,7 +27,8 @@ export default {
state.serverInfo = info;
},
addPopUp(state, item) {
state.popups.push(item);
item.time = Date.now();
state.popups.unshift(item);
},
removePopUp(state, item) {
let index = state.popups.indexOf(item);