mirror of
https://github.com/koichixD/uptime-kuma.git
synced 2026-08-30 21:01:10 +00:00
ceb9c7e742
Co-authored-by: Frank Elsinga <frank@elsinga.de>
15 lines
282 B
Vue
15 lines
282 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script>
|
|
import { setPageLocale } from "./util-frontend";
|
|
import { polyfillCountryFlagEmojis } from "country-flag-emoji-polyfill";
|
|
export default {
|
|
created() {
|
|
setPageLocale();
|
|
},
|
|
};
|
|
polyfillCountryFlagEmojis();
|
|
</script>
|