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