重构: 前端Vue3+Tailwind+Vite构建管线+设置组件拆分

This commit is contained in:
2026-05-27 02:42:25 +08:00
parent f3148bf72f
commit aee7997195
44 changed files with 4309 additions and 1720 deletions

15
web-ui/tailwind.config.js Normal file
View File

@@ -0,0 +1,15 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{vue,ts}', './*.html'],
corePlugins: {
preflight: false,
},
theme: {
extend: {
fontFamily: {
sans: ['"Segoe UI"', '"Microsoft YaHei"', 'sans-serif'],
display: ['-apple-system', '"SF Pro Display"', '"Segoe UI"', 'sans-serif'],
},
},
},
}