feat: 初始化webui login

This commit is contained in:
手瓜一十雪
2024-11-14 21:41:43 +08:00
parent ae57ab78f3
commit 4be6d8ec01
18 changed files with 389 additions and 0 deletions

12
napcat.webui/src/main.ts Normal file
View File

@@ -0,0 +1,12 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import { Button as TButton, Input as TInput, Form as TForm, FormItem as TFormItem } from 'tdesign-vue-next';
const app = createApp(App);
app.use(TButton);
app.use(TInput);
app.use(TForm);
app.use(TFormItem);
app.mount('#app');