format seconds into hh:mm:ss

This commit is contained in:
geoffrey45
2022-02-09 22:15:46 +03:00
parent 214ae82344
commit e7741937a3
6 changed files with 79 additions and 48 deletions
+3 -1
View File
@@ -35,7 +35,9 @@ const tabs = {
queue: "queue",
};
const current_tab = ref(tabs.queue);
const default_tab = tabs.home;
const current_tab = ref(default_tab);
function changeTab(tab) {
current_tab.value = tab;