feat(in-progress): 턴 조작기를 vue로 분리

This commit is contained in:
2021-11-27 15:40:31 +09:00
parent c493640dae
commit c7219eeb33
7 changed files with 354 additions and 62 deletions
+9
View File
@@ -0,0 +1,9 @@
import { createApp } from 'vue'
import ReservedCommand from './ReservedCommand.vue';
import BootstrapVue3 from 'bootstrap-vue-3'
import { setAxiosXMLHttpRequest } from './util/setAxiosXMLHttpRequest';
setAxiosXMLHttpRequest();
createApp(ReservedCommand).use(BootstrapVue3).mount('#reservedCommandList')