dep: bootstrap-vue-3 추가

- 아직 없는 기능이 많으므로 단순 출력은 CoreUI Vue 동시 활용
- 불편..
This commit is contained in:
2021-09-15 19:06:15 +00:00
committed by Gitea
parent 974747b297
commit dc8472323d
7 changed files with 33 additions and 28 deletions
+4 -1
View File
@@ -1,6 +1,9 @@
import { createApp } from 'vue'
import NPCControl from './NPCControl.vue';
import BootstrapVue3 from 'bootstrap-vue-3'
import "../scss/bootstrap5.scss";
import 'bootstrap-vue-3/dist/bootstrap-vue-3.css'
import { setAxiosXMLHttpRequest } from './util/setAxiosXMLHttpRequest';
setAxiosXMLHttpRequest();
createApp(NPCControl).mount('#app')
createApp(NPCControl).use(BootstrapVue3).mount('#app')