feat: 개인 전략 메뉴 추가

- 회의실/기밀실 버튼을 하나로 합치고 그 공간으로 추가
This commit is contained in:
2023-12-25 08:28:16 +00:00
parent 6cf8e4fc40
commit 85dc5347c5
6 changed files with 93 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
import { createApp } from 'vue'
import UserAction from '@/PageUserAction.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(UserAction)).mount('#app')