locahost:8001/index能正常访问,为什么访问localhost:8001/index/tmp无法显示页面且报错
配置路由为:
{
path: '/index',
name: 'Index',
component: Index,
children: [
// 重定向到
{
path: "",
redirect: "/tmp"
},
{
path: 'tmp',
// 单个router-view用:component
component: Tmp,
}
],
meta: {
title: "首页",
// 如有该属性,则该页面需校验是否已登录
requiresAuth: true
}
}
报错信息500,你8080端口的服务启了吗?
看你路由配置刚测试了可以正常显示内容