1
0
Fork 0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-03-22 01:26:09 +03:00
uptime-kuma/src/App.vue

13 lines
170 B
Vue
Raw Normal View History

2021-06-25 21:55:49 +08:00
<template>
<router-view />
2021-06-25 21:55:49 +08:00
</template>
<script>
import { setPageLocale } from "./util-frontend";
export default {
created() {
setPageLocale();
},
};
2021-06-25 21:55:49 +08:00
</script>