mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-29 14:43:04 +00:00
17 lines
No EOL
310 B
Vue
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> |