Files
BigStickNewOfficialWebsite-V2/app.vue
T

11 lines
217 B
Vue
Raw Normal View History

2026-07-16 16:42:45 +08:00
<script setup>
const route = useRoute()
const isInteriorPage = computed(() => route.path !== '/')
</script>
<template>
<NuxtPage />
<InteriorPageTools v-if="isInteriorPage" />
<ConsultationModal />
</template>