11 lines
217 B
Vue
11 lines
217 B
Vue
<script setup>
|
|
const route = useRoute()
|
|
const isInteriorPage = computed(() => route.path !== '/')
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtPage />
|
|
<InteriorPageTools v-if="isInteriorPage" />
|
|
<ConsultationModal />
|
|
</template>
|