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