1.首先说明的现象进入详情页返回的时候,红色区块消失,swip组件滑动效果消失
刷新页面纠正了,所以就找刷新页面的方法
1.localtion.reload() 和this.$router.go(0) 页面会出现闪烁
2.新建空白页跳转,然后再重空白页跳转回来 但是又出现问题了
从top页返回不到A页面,top和empty页面出现了死循环,你会问为什么不做个判断让他跳转到A页面呢,首先我们这个是模块打包,A和我现在这个不是一个模块,所以返回到A以后等还是有问题
3.provide / inject组合
APP.vue
<template>
<div id="app">
<keep-alive>
<router-view v-show="$route.meta.keepAlive"/>
</keep-alive>
<router-view v-if="isRouterAlive"/>
</div>
</template>
<script>
export default {
name: 'App',
provide(){