作者: | 来源:互联网 | 2023-09-24 19:31
在history模式下,打包后出现页面空白。
取消history后,打包后就好了。
请问这是为什么?
export default new Router({
mode: "history",
base: process.env.BASE_URL,
routes: [
1 2 3 4 5 6 7 8 9 10
| {
path: "/",
name: "Index",
component: () =>
import(/* webpackChunkName: "Index" */ "./views/Index.vue")
},
module.exports = {
publicPath: "./" // 项目路径
}; |