mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
17 lines
435 B
Vue
17 lines
435 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
import { Toaster } from '@memoh/ui'
|
|
import 'vue-sonner/style.css'
|
|
import { useSettingsStore } from '@/store/settings'
|
|
|
|
// 初始化设置(主题、语言),确保在任何页面进入时都已应用
|
|
useSettingsStore()
|
|
</script>
|
|
|
|
<template>
|
|
<section class="[&_input]:shadow-none!">
|
|
<RouterView />
|
|
<Toaster position="top-center" />
|
|
</section>
|
|
</template>
|