mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-30 13:39:03 +08:00
22 lines
408 B
TypeScript
22 lines
408 B
TypeScript
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,
|
|
Select as TSelect,
|
|
Option as TOption
|
|
|
|
} from 'tdesign-vue-next';
|
|
|
|
const app = createApp(App);
|
|
app.use(TButton);
|
|
app.use(TInput);
|
|
app.use(TForm);
|
|
app.use(TFormItem);
|
|
app.use(TSelect);
|
|
app.use(TOption);
|
|
|
|
app.mount('#app'); |