11 lines
324 B
TypeScript
Raw Normal View History

2022-04-14 10:30:49 +08:00
import 'bootstrap';
2022-04-10 23:06:20 +08:00
import 'bootstrap/dist/css/bootstrap.min.css';
2022-04-15 18:16:42 +08:00
import ElementPlus from 'element-plus';
import 'element-plus/dist/index.css';
import locale from 'element-plus/lib/locale/lang/zh-tw';
2022-04-10 23:06:20 +08:00
import { createApp } from 'vue';
import App from './App.vue';
2022-04-10 00:30:43 +08:00
2022-04-15 18:16:42 +08:00
createApp(App).use(ElementPlus, { locale }).mount('#app')