26 lines
488 B
Vue
26 lines
488 B
Vue
|
|
<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>
|