问题描述
vue 动态路由匹配 刷新后,在index.html引入的css地址变了。
未刷新前:
Request URL: http://localhost:8080/static/css/common.css
刷新后:
Request URL: http://localhost:8080/job/static/css/common.css
相关代码
// 请把代码文本粘贴到下方(请勿用图片代替代码)
-------------
router.js:
******
{
path: '/job/:id',
component: _import('pages/CareersDetail')
}
-------------
index.html(index.html与static同级):
<link rel="stylesheet" type="text/css" href="./static/css/common.css"/>
----------------------
引入的公共样式通过在mian.js import 也可以最终解决;
但为在index.html里引入就这样呢