VueTube/NUXT/pages/index.vue

20 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>