This commit is contained in:
2022-06-26 21:14:18 +08:00
commit 4e2f0eb7aa
38 changed files with 1520 additions and 0 deletions

17
src/App.vue Normal file
View File

@@ -0,0 +1,17 @@
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({});
</script>
<template>
<router-view></router-view>
</template>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
</style>