11 lines
324 B
TypeScript
11 lines
324 B
TypeScript
import 'bootstrap';
|
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
|
import ElementPlus from 'element-plus';
|
|
import 'element-plus/dist/index.css';
|
|
import locale from 'element-plus/lib/locale/lang/zh-tw';
|
|
import { createApp } from 'vue';
|
|
import App from './App.vue';
|
|
|
|
|
|
createApp(App).use(ElementPlus, { locale }).mount('#app')
|