Kuma/src/App.vue
Alan Escarcha ceb9c7e742
feat: Support for country flags emojis (#5782)
Co-authored-by: Frank Elsinga <frank@elsinga.de>
2025-04-19 01:09:10 +02:00

14 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>