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