小程序
小游戏
企业微信
微信支付
扫描小程序码分享
用router.push在web上面没有问题,小程序里面跳转是白屏,上次看有个说改hash模式,也还是不行。
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
有参照demo配置么?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
import Home from '../../home/Index.vue';
import List from '../../list/Index.vue';
import Detail from '../../detail/Index.vue';
Vue.use(Router);
const router = new Router({
mode: 'history',
routes: [{
path: '/(home|index)?',
name: 'Home',
component: Home,
}, {
path: '/index.html',
name: 'HomeHtml',
path: '/test/(home|index)',
name: 'HomeTest',
path: '/test/list/:id',
name: 'List',
component: List,
path: '/test/detail/:id',
name: 'Detail',
component: Detail,
}],
});
楼主将问题解决了吗?我也遇到了一样的问题。
AnyBody help
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
有参照demo配置么?
import Home from '../../home/Index.vue';
import List from '../../list/Index.vue';
import Detail from '../../detail/Index.vue';
Vue.use(Router);
const router = new Router({
mode: 'history',
routes: [{
path: '/(home|index)?',
name: 'Home',
component: Home,
}, {
path: '/index.html',
name: 'HomeHtml',
component: Home,
}, {
path: '/test/(home|index)',
name: 'HomeTest',
component: Home,
}, {
path: '/test/list/:id',
name: 'List',
component: List,
}, {
path: '/test/detail/:id',
name: 'Detail',
component: Detail,
}],
});
楼主将问题解决了吗?我也遇到了一样的问题。
AnyBody help