Files
DianZhanDemo/app/app.vue

26 lines
488 B
Vue
Raw Normal View History

2025-12-11 01:29:41 +08:00
<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>