Vue keep-alive and update data

<div id="app">
        <!---->
        <keep-alive>
            <router-view v-if="$route.meta.keepAlive"></router-view>
        </keep-alive>
        <router-view v-if="!$route.meta.keepAlive"></router-view>
        <!---->
<!--        <router-view v-if="isRouterAlive"></router-view> -->
    </div>

how to get the following vMuf if = "isRouterAlive" to the top, but there is already v-if on it

Apr.11,2021

< router-view route.meta.keepAlive = "! $route.meta.keepAlive | | isRouteAlive" > < / router-view >
is this not possible


can the view named separately by the route replace the next VIFF?

Menu