0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-29 14:43:04 +00:00
VueTube/NUXT/pages/index.vue
2022-03-15 20:31:03 -04:00

17 lines
No EOL
310 B
Vue

<template>
<center style="padding-top: 3em;">
<v-progress-circular
size="50"
indeterminate
color="primary"
/>
</center>
</template>
<script>
export default {
mounted() {
location.href = `/${localStorage.getItem("startPage") || "home"}`
}
}
</script>