vuecli3.0多入口文件启动首页路由路径的问题
vuecli搭建了一个后台管理项目
npm run serve 启动项目之后的路径:http://localhost:8085/#/Table (这实际上是个登录页,但是路径配置的是Table)
登录之后跳转的路径 http://localhost:8085/index.html#/Table
router.js里面的配置
{
path: '/',
redirect: '/Table'
},
配置项
devServer: {
port: port, // 端口号
host: '0.0.0.0',
https: false, // https:{type:Boolean}
open: true, //配置自动启动浏览器,
index: '/account.html', //启动项目后,默认进入的页面地址
overlay: { //通过设置让浏览器 overlay 同时显示警告和错误
warnings: true,
errors: true
},
let entry = {
'index': './src/index.js',//项目后台主体
'account': './src/view/account.js'//登录页
}
想实现的是 npm run serve 启动项目之后的路径 http://localhost:8085/#/Login
登录之后跳转的路径 http://localhost:8085/index.html#/Table
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论