mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-30 19:20:40 +00:00
21 lines
366 B
Vue
21 lines
366 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-page");
|
||
|
} else {
|
||
|
this.$router.push("/dashboard");
|
||
|
}
|
||
|
},
|
||
|
|
||
|
};
|
||
|
</script>
|