tui 项目初始化: vue-tui 技术栈骨架 (Vite 8 + Vue 3 + @vue-tui/runtime)

This commit is contained in:
lou
2026-08-09 23:38:46 +08:00
commit 1ea998f880
7 changed files with 91 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from "vite";
import vue from "unplugin-vue/vite";
import { vueTui } from "@vue-tui/vite";
export default defineConfig({
input: "src/main.ts",
plugins: [vue(), vueTui()],
});