前端页面初始化更新,使用vue进行开发

This commit is contained in:
2026-01-27 12:21:20 +08:00
parent cfd7c605af
commit 911e58c29b
125 changed files with 5877 additions and 404 deletions

23
webapp/src/App.vue Normal file
View File

@@ -0,0 +1,23 @@
<script setup lang="ts">
import 'vue-sonner/style.css'
import ComponentShowcase from './views/ComponentShowcase.vue'
</script>
<template>
<div id="app">
<ComponentShowcase />
</div>
</template>
<style>
#app {
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html, body {
margin: 0;
padding: 0;
}
</style>