mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
16 lines
350 B
Vue
16 lines
350 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>
|