我在其他页面this.$router.go('/')它会跳到Index(首页),我想home里v-header和v-sidebar组件数据也得重新刷新一下,home作为根组件各种跳转只会在他里面跳,home本身里面的组件并不会刷新,请问有没有办法,我在别的页面返回index的时候,连同home里的组件一起刷新,以下是我路由和home模版代码 routes: [{
path: '',
component: Home,
children: [{
path: '/',
component: Index,
name: "Index",
},
{
path: '/goods',
component: GoodsRelease,
}
]}]home模版<template>
<div>
<v-header></v-header>
<div class="wrapper">
<v-sidebar></v-sidebar>
<div class="content">
<transition name="slide-fade" mode="out-in">
<router-view></router-view>
</transition>
</div>
</div>
</div></template>
添加回答
举报
0/150
提交
取消