15 lines
247 B
Vue
15 lines
247 B
Vue
<template>
|
|
<div id="app" class="min-h-screen bg-gray-50 dark:bg-gray-900">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// 根组件逻辑
|
|
</script>
|
|
|
|
<style>
|
|
#app {
|
|
font-family: 'Inter', system-ui, sans-serif;
|
|
}
|
|
</style> |