feat: 개인 전략 메뉴 추가
- 회의실/기밀실 버튼을 하나로 합치고 그 공간으로 추가
This commit is contained in:
@@ -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')
|
||||
Reference in New Issue
Block a user