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