8 lines
258 B
TypeScript
8 lines
258 B
TypeScript
import { createApp } from 'vue'
|
|
import PageJoin from '@/PageJoin.vue';
|
|
import { auto500px } from './util/auto500px';
|
|
import { installVue3Components } from './util/installVue3Components';
|
|
|
|
auto500px();
|
|
|
|
installVue3Components(createApp(PageJoin)).mount('#app') |