mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
27 lines
510 B
JavaScript
27 lines
510 B
JavaScript
import Vue from 'vue';
|
|
import App from './App';
|
|
import { router } from './router';
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Vue.config.productionTip = false;
|
|
}
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
mounted() {
|
|
if (this.$route.hash) {
|
|
// wait page init
|
|
setTimeout(() => {
|
|
const el = document.querySelector(this.$route.hash);
|
|
if (el) {
|
|
el.scrollIntoView({
|
|
behavior: 'smooth'
|
|
});
|
|
}
|
|
}, 1000);
|
|
}
|
|
},
|
|
render: h => h(App),
|
|
router
|
|
});
|