mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
31 lines
682 B
JavaScript
31 lines
682 B
JavaScript
import Vue from 'vue';
|
|
import VueRouter from 'vue-router';
|
|
import DemoBlock from './components/DemoBlock';
|
|
import DemoSection from './components/DemoSection';
|
|
import routes from './router';
|
|
import App from './App';
|
|
import '@vant/touch-emulator';
|
|
import '../common/iframe-router';
|
|
|
|
Vue.use(VueRouter);
|
|
Vue.component(DemoBlock.name, DemoBlock);
|
|
Vue.component(DemoSection.name, DemoSection);
|
|
|
|
const router = new VueRouter({
|
|
mode: 'hash',
|
|
routes,
|
|
scrollBehavior: (to, from, savedPosition) => savedPosition || { x: 0, y: 0 }
|
|
});
|
|
|
|
router.afterEach(() => {
|
|
Vue.nextTick(window.syncPath);
|
|
});
|
|
|
|
window.vueRouter = router;
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
render: h => h(App),
|
|
router
|
|
});
|