在vue中配置路由的方法:1.新建項目,引入vue和vue-router;2.使用Vue.use方法注冊路由;3.執行代碼配置路由;
具體步驟如下:
1.首先,在新建一個html項目,并在項目中引入vue和vue-router;
import Vue from 'vue'
import Router from 'vue-router'
2.vue和vue-router引入好后,在項目中使用Vue.use方法注冊路由;
Vue.use(Router)
3.最后,路由注冊好后,在頁面中執行以下代碼即可配置路由;
export default new Router({
routes: [
{
path : ‘/’,
name : ‘Home’,
component : Home
},
{
path : ‘/content’,
name : ‘Content’,
component : Content
}
],
mode: "history"
})