feat(WIP): processing에서 vue 객체 통합, lazy loading

This commit is contained in:
2021-12-19 17:22:54 +09:00
parent bd54681d78
commit be33ca69f8
11 changed files with 61 additions and 318 deletions
+7 -3
View File
@@ -1,3 +1,7 @@
export { default as che_강행 } from "./che_강행.vue";
export { default as che_이동 } from "./che_이동.vue";
export { default as che_출병 } from "./che_출병.vue";
import { default as CityProcess} from "./che_이동.vue";
export const commandMap: Record<string, ()=>typeof CityProcess> = {
che_강행: ()=>CityProcess,
che_이동: ()=>CityProcess,
che_출병: ()=>CityProcess,
}