0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-12 22:45:06 +00:00
VueTube/NUXT/pages/index.vue

20 lines
378 B
Vue
Raw Normal View History

2022-01-24 22:56:57 +00:00
<template>
2022-03-16 00:31:03 +00:00
<center style="padding-top: 3em;">
<v-progress-circular
size="50"
indeterminate
color="primary"
/>
</center>
2022-01-24 22:56:57 +00:00
</template>
2022-03-16 00:31:03 +00:00
<script>
export default {
layout: "empty",
async mounted() {
await this.$youtube.getAPI()
this.$router.push(`/${localStorage.getItem("startPage") || "home"}`)
2022-03-16 00:31:03 +00:00
}
}
</script>