Files
core/hwe/ts/v_nationGeneral.ts
Hide_D 9e17e58ecb dep: package update
- decl type 변경 포함
2023-03-20 00:02:04 +09:00

20 lines
568 B
TypeScript

import "@scss/nationGeneral.scss";
import "ag-grid-community/styles/ag-grid.css";
import "ag-grid-community/styles/ag-theme-balham.css";
import { createApp } from 'vue'
import PageNationGeneral from '@/PageNationGeneral.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(PageNationGeneral)).mount('#app');