mirror of
https://mirror.suhoan.cn/https://github.com/EasyTier/EasyTier.git
synced 2025-12-16 06:37:23 +08:00
28 lines
495 B
Vue
28 lines
495 B
Vue
<script setup lang="ts">
|
|
|
|
import { I18nUtils } from 'easytier-frontend-lib'
|
|
import { onMounted } from 'vue';
|
|
import { Toast, DynamicDialog } from 'primevue';
|
|
|
|
onMounted(async () => {
|
|
await I18nUtils.loadLanguageAsync('cn')
|
|
});
|
|
|
|
</script>
|
|
|
|
<!-- https://flowbite.com/docs/components/sidebar/#sidebar-with-navbar -->
|
|
|
|
<template>
|
|
<Toast position="bottom-right" />
|
|
<DynamicDialog />
|
|
|
|
<RouterView />
|
|
</template>
|
|
|
|
<style scoped>
|
|
button {
|
|
text-align: left;
|
|
justify-content: left;
|
|
}
|
|
</style>
|