mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
13 lines
170 B
Vue
13 lines
170 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script>
|
|
import { setPageLocale } from "./util-frontend";
|
|
export default {
|
|
created() {
|
|
setPageLocale();
|
|
},
|
|
};
|
|
</script>
|