2022-04-21 17:53:52 +08:00
|
|
|
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";
|
2022-04-21 15:10:44 +08:00
|
|
|
|
2022-04-21 17:53:52 +08:00
|
|
|
|
|
|
|
createApp(App).use(ElementPlus, { locale }).mount("#app");
|