fix, refac: bvn에 맞게 tooltip directive 변경
- installVue3Component로 통합 - boostrap-vue-next 0.7.3 directive 문제 우회
This commit is contained in:
+5
-5
@@ -1,10 +1,10 @@
|
||||
import "@scss/auction.scss";
|
||||
import { createApp } from 'vue'
|
||||
import PageAuction from '@/PageAuction.vue';
|
||||
import BootstrapVueNext, { BToastPlugin } from 'bootstrap-vue-next'
|
||||
import { auto500px } from "./util/auto500px";
|
||||
import { insertCustomCSS } from "./util/customCSS";
|
||||
import { htmlReady } from "./util/htmlReady";
|
||||
import { installVue3Components } from "./util/installVue3Components";
|
||||
|
||||
declare const staticValues: {
|
||||
serverID: string,
|
||||
@@ -16,8 +16,8 @@ declare const staticValues: {
|
||||
auto500px();
|
||||
|
||||
htmlReady(() => {
|
||||
insertCustomCSS();
|
||||
});
|
||||
createApp(PageAuction, {
|
||||
insertCustomCSS();
|
||||
});
|
||||
installVue3Components(createApp(PageAuction, {
|
||||
isResAuction: staticValues.isResAuction,
|
||||
}).use(BootstrapVueNext).use(BToastPlugin).mount('#app')
|
||||
})).mount('#app')
|
||||
Reference in New Issue
Block a user