为什么按照提示配置了router,然后每个子路由都跳转到index了?
来源:4-8 路由封装

隽愉
2020-03-24
`import Vue from 'vue’
import Router from 'vue-router’
import Home from './pages/home’
import Index from './pages/index’
import Product from './pages/product’
import Detail from './pages/detail’
import Cart from './pages/cart’
import Order from './pages/order’
import OrderConfirm from './pages/orderConfirm’
import OrderList from './pages/orderList’
import OrderPay from ‘./pages/orderPay’
Vue.use(Router);
export default new Router({
routes:[
{
path: ‘/’,
name:‘home’,
component:Home,
redirect:’/index’,
children:[
{
path:’/index’,
name:‘index’,
component:Index,
},{
path:’/product/:id’,
name:‘product’,
component:Product,
},{
path:’/detail/:id’,
name:‘detail’,
component:Detail,
}
]
},
{
path:’/cart’,
name:‘cart’,
component:Cart,
},
{
path:’/order’,
name:‘order’,
component:Order,
children:[
{
path:’/list’,
name:‘order-list’,
component:OrderList,
},{
path:’/confirm’,
name:‘order-confirm’,
component:OrderConfirm,
},{
path:’/pay’,
name:‘order-pay’,
component:OrderPay,
}
]
}
]
});`
1回答
-
河畔一角
2020-03-25
购物车和详情都会跳转到首页吗??
042020-03-25
相似问题