请问vue-router中怎么刚进入页面就显示我的home组件

弄了四个组件,不知道怎么刚进入页面显示我的home组件,不用点home
图片描述


图片描述

阅读 5.8k
3 个回答

其實不用想太難,配置好之後直接 replace 就可以了 :)

const router = new VueRouter({
  routes,
})

router.replace('/home')

new Vue({...})

router.push('/home')

像楼上替换或者把home的路由设为"/"。

{path: '/', name: 'home', component: Home}
推荐问题