forked from devsam/core
13 lines
424 B
TypeScript
13 lines
424 B
TypeScript
import { createApp } from 'vue'
|
|
import PageInheritPoint from '@/PageInheritPoint.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(PageInheritPoint)).mount('#app'); |