Files
core/hwe/ts/v_troop.ts
Hide_D 761b91b7db fix, refac: bvn에 맞게 tooltip directive 변경
- installVue3Component로 통합
- boostrap-vue-next 0.7.3 directive 문제 우회
2023-03-19 14:41:09 +09:00

15 lines
430 B
TypeScript

import "@scss/troop.scss";
import { createApp } from 'vue'
import PageTroop from '@/PageTroop.vue';
import { auto500px } from "./util/auto500px";
import { htmlReady } from "./util/htmlReady";
import { insertCustomCSS } from "./util/customCSS";
import { installVue3Components } from "./util/installVue3Components";
auto500px();
htmlReady(() => {
insertCustomCSS();
});
installVue3Components(createApp(PageTroop)).mount('#app')