| 123456789101112131415161718192021222324 |
- import Vue from 'vue'
- import VueRouter from 'vue-router'
- import Home from '../pages/Home.vue'
- const originalPush = VueRouter.prototype.push
- VueRouter.prototype.push = function push (location) {
- return originalPush.call(this, location).catch(err => err)
- }
- Vue.use(VueRouter)
- const routes = [
- {
- path: '/',
- name: 'Home',
- component: Home
- }
- ]
- const router = new VueRouter({
- routes
- })
- export default router
|