vue Jump route

Disclaimer: If you have any objection to this article, then please write your comments in the article comments at. If you find this article interesting, please share and forward, or you can look at, you acknowledge and encouragement of our articles. Wish everyone in the programming this road, farther and farther. https://blog.csdn.net/weixin_44369568/article/details/91457786

1, download npm i vue-router

2、main.js

import VueRouter from ‘vue-router’

import Index from ‘./pages/index.vue’

2、main.js

Vue.use (VueRouter)

3、let router = new VueRouter({

routes: [{
    name: 'index',
    path: '/index',
    component:Index
}]

})

4, define a route

new view ({

el:"#box",
router

})

5, hoplinks index.vue

</router-link

Guess you like

Origin blog.csdn.net/weixin_44369568/article/details/91457786