fix, refac: bvn에 맞게 tooltip directive 변경

- installVue3Component로 통합
- boostrap-vue-next 0.7.3 directive 문제 우회
This commit is contained in:
2023-03-19 14:41:09 +09:00
parent 31f4472a8a
commit 761b91b7db
30 changed files with 108 additions and 120 deletions
+2 -2
View File
@@ -4,10 +4,10 @@ import "ag-grid-community/dist/styles/ag-theme-balham-dark.css";
import { createApp } from 'vue'
import PageNationGeneral from '@/PageNationGeneral.vue';
import { BootstrapVueNext, BToastPlugin } from 'bootstrap-vue-next';
import { auto500px } from './util/auto500px';
import { htmlReady } from "./util/htmlReady";
import { insertCustomCSS } from "./util/customCSS";
import { installVue3Components } from "./util/installVue3Components";
@@ -17,4 +17,4 @@ auto500px();
htmlReady(() => {
insertCustomCSS();
});
createApp(PageNationGeneral).use(BootstrapVueNext).use(BToastPlugin).mount('#app');
installVue3Components(createApp(PageNationGeneral)).mount('#app');