// router.js...const router = new Router({ mode: 'history', // 配置模式 base: '/lucky/', // 重要,和vue.config.js中的publicPath一样 ...});...// vue.config.js publicPath: process.env.NODE_ENV === 'production' ? '/lucky' : '/',