How does Vue route jump keep some common components from rendering?

I introduced a bottom navigation in app.vue, and now I want to jump to the detail page, and this page does not have a bottom navigation, how should this bottom navigation not be displayed?

Mar.12,2021

<div id="app">
  <route-view></route-view>
  <footer  v-if="$route.name !== 'detail'"></footer>
</div>
Menu