2019-12-06 15:51:20 +08:00

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
});