hi-download/src/App.vue
2026-01-19 20:12:21 -08:00

27 lines
583 B
Vue

<script setup lang="ts" >
import Home from './pages/Home/index.vue'
import 'vue-sonner/style.css'
import { Toaster } from '@/components/ui/sonner'
</script>
<template>
<Home />
<Toaster
position="top-center"
:toast-options="{
style: {
background: '#ddd',
color: '#000',
border: '1px solid rgba(255, 255, 255)',
},
classes: {
title: 'text-[20px] font-bold',
toast: 'rounded-[20px]', // 顺便统一一下你 Dialog 的圆角风格
},
}"
/>
</template>
<style scoped>
</style>