uptime-kuma/src/pages/Entry.vue
2021-09-25 22:44:29 +08:00

21 lines
361 B
Vue

<template>
<div></div>
</template>
<script>
import axios from "axios";
export default {
async mounted() {
let entryPage = (await axios.get("/api/entry-page")).data;
if (entryPage === "statusPage") {
this.$router.push("/status");
} else {
this.$router.push("/dashboard");
}
},
};
</script>