misc: auto500px, insertCustomCSS 누락된 페이지 정정

This commit is contained in:
2022-04-26 00:33:54 +09:00
parent 8961abea7f
commit 794eaced98
13 changed files with 59 additions and 8 deletions
+6 -1
View File
@@ -10,10 +10,15 @@ import PartialReservedCommand from '@/PartialReservedCommand.vue';
import BootstrapVue3 from 'bootstrap-vue-3'
import { setAxiosXMLHttpRequest } from '@util/setAxiosXMLHttpRequest';
import Multiselect from 'vue-multiselect';
import "@/legacy/main";
import { auto500px } from './util/auto500px';
import { htmlReady } from './util/htmlReady';
import { insertCustomCSS } from './util/customCSS';
setAxiosXMLHttpRequest();
auto500px();
htmlReady(() => {
insertCustomCSS();
});
createApp(PartialReservedCommand).use(BootstrapVue3).component('v-multiselect', Multiselect).mount('#reservedCommandList');