uptime-kuma/src/App.vue

13 lines
180 B
Vue
Raw Permalink Normal View History

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