1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-12-16 10:29:33 +02:00
uptime-kuma/src/App.vue

13 lines
180 B
Vue
Raw Normal View History

2021-06-25 15:55:49 +02:00
<template>
2022-04-13 18:30:32 +02:00
<router-view />
2021-06-25 15:55:49 +02:00
</template>
<script>
import { setPageLocale } from "./util-frontend";
export default {
2022-04-13 18:30:32 +02:00
created() {
setPageLocale();
},
};
2021-06-25 15:55:49 +02:00
</script>