初始化基础框架

This commit is contained in:
2026-01-14 09:53:37 +08:00
parent 2bc2a440db
commit 8deaa1a7e2
16 changed files with 1479 additions and 26 deletions

View File

@@ -1,11 +1,23 @@
<script setup></script>
<template>
<h1>You did it!</h1>
<p>
Visit <a href="https://vuejs.org/" target="_blank" rel="noopener">vuejs.org</a> to read the
documentation
</p>
<router-view />
</template>
<style scoped></style>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#app {
min-height: 100vh;
}
</style>