mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-12-01 15:37:29 +00:00
17 lines
No EOL
314 B
Vue
17 lines
No EOL
314 B
Vue
<template>
|
|
<center style="padding-top: 3em;">
|
|
<v-progress-circular
|
|
size="50"
|
|
indeterminate
|
|
color="primary"
|
|
/>
|
|
</center>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
mounted() {
|
|
this.$router.push(`/${localStorage.getItem("startPage") || "home"}`);
|
|
}
|
|
}
|
|
</script> |