mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
18 lines
492 B
JavaScript
18 lines
492 B
JavaScript
import { createApp } from 'vue';
|
|
import DemoBlock from './components/DemoBlock.vue';
|
|
import DemoSection from './components/DemoSection.vue';
|
|
import { router } from './router';
|
|
import { packageEntry } from 'site-mobile-shared';
|
|
import App from './App.vue';
|
|
import '@vant/touch-emulator';
|
|
|
|
window.app = createApp(App)
|
|
.use(router)
|
|
.use(packageEntry)
|
|
.component(DemoBlock.name, DemoBlock)
|
|
.component(DemoSection.name, DemoSection);
|
|
|
|
setTimeout(() => {
|
|
window.app.mount('#app');
|
|
}, 0);
|