vue刷新后在index.html引入的.css地址被替换了

问题描述

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"/>

----------------------


慕尼黑的夜晚无繁华
浏览 1256回答 1
1回答

慕少森

引入的公共样式通过在mian.js import 也可以最终解决;但为在index.html里引入就这样呢
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js