VueTube/NUXT/pages/index.vue

17 lines
314 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 {
mounted() {
2022-03-16 01:03:34 +00:00
this.$router.push(`/${localStorage.getItem("startPage") || "home"}`);
2022-03-16 00:31:03 +00:00
}
}
</script>