forked from devsam/core
20 lines
568 B
TypeScript
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'); |