dep: bootstrap-vue-3 추가

- 아직 없는 기능이 많으므로 단순 출력은 CoreUI Vue 동시 활용
- 불편..
This commit is contained in:
2021-09-15 01:46:31 +09:00
parent ca25f55cb3
commit d6b06564e7
7 changed files with 33 additions and 28 deletions
+4 -2
View File
@@ -1,4 +1,6 @@
import { createApp } from 'vue'
import InheritPoint from './inheritPoint.vue';
createApp(InheritPoint).mount('#app')
import BootstrapVue3 from 'bootstrap-vue-3'
import "../scss/bootstrap5.scss";
import 'bootstrap-vue-3/dist/bootstrap-vue-3.css'
createApp(InheritPoint).use(BootstrapVue3).mount('#app');