mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 05:03:52 +01:00
19 lines
559 B
Vue
19 lines
559 B
Vue
<script setup>
|
|
import { RouterView } from 'vue-router'
|
|
|
|
onMounted(async () => {
|
|
const { useUserStore } = await import('./stores/user.js');
|
|
const { language } = useNavigatorLanguage()
|
|
|
|
watch(language, () => {
|
|
useUserStore().applyLanguage()
|
|
})
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<notifications id="vueNotification" role="alert" width="100%" position="top" :duration="4000" :speed="0" :max="1" classes="notification is-radiusless" />
|
|
<main class="main-section">
|
|
<RouterView />
|
|
</main>
|
|
</template> |