feat: reoede web to tailwindcss

This commit is contained in:
engigu
2025-08-10 14:32:24 +08:00
parent 0a12a25473
commit d557547bc0
192 changed files with 9624 additions and 9694 deletions
+14 -7
View File
@@ -1,9 +1,16 @@
<template>
<Index></Index>
</template>
<script setup>
import Index from "./views/home/index.vue"
<script lang="ts">
export const description = "A login page with form and image."
</script>
<style></style>
<script setup lang="ts">
import { Toaster } from '@/components/ui/sonner'
import 'vue-sonner/style.css'
// 不再直接导入Index组件,而是使用路由视图
</script>
<template>
<!-- shacn-vue的toast -->
<Toaster />
<!-- 使用路由视图代替直接渲染Index组件 -->
<router-view />
</template>