This commit is contained in:
ch197511161
2025-12-11 01:29:41 +08:00
parent 908b4361ed
commit ddce8fce18
473 changed files with 267270 additions and 0 deletions

25
app/app.vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<div class="h-screen w-screen overflow-hidden bg-black/0">
<NuxtRouteAnnouncer />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>
<style>
/* 导入 Tailwind CSS */
@import './assets/css/main.css';
html,
body {
margin: 0;
padding: 0;
height: 100vh;
width: 100vw;
overflow: hidden;
font-family:
'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑',
Arial, sans-serif;
}
</style>