0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-12-01 15:37:29 +00:00
VueTube/NUXT/pages/index.vue
2022-03-15 21:03:34 -04:00

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>