fix, refac: bvn에 맞게 tooltip directive 변경
- installVue3Component로 통합 - boostrap-vue-next 0.7.3 directive 문제 우회
This commit is contained in:
+2
-3
@@ -1,13 +1,12 @@
|
||||
import { createApp } from 'vue'
|
||||
import { BootstrapVueNext, BToastPlugin } from 'bootstrap-vue-next'
|
||||
import { auto500px } from './util/auto500px';
|
||||
import { htmlReady } from './util/htmlReady';
|
||||
import { insertCustomCSS } from './util/customCSS';
|
||||
import PageFront from './PageFront.vue';
|
||||
import Multiselect from 'vue-multiselect';
|
||||
import { installVue3Components } from './util/installVue3Components';
|
||||
auto500px();
|
||||
|
||||
htmlReady(() => {
|
||||
insertCustomCSS();
|
||||
});
|
||||
createApp(PageFront).use(BootstrapVueNext).use(BToastPlugin).component('v-multiselect', Multiselect).mount('#app');
|
||||
installVue3Components(createApp(PageFront)).mount('#app');
|
||||
|
||||
Reference in New Issue
Block a user