mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-07 14:39:30 -07:00
23 lines
521 B
Vue
23 lines
521 B
Vue
<template>
|
|
<div>
|
|
<DisplayHeader v-if="!isCategoryPage" :activeItem="activeItem" />
|
|
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import { useRoute } from 'vue-router';
|
|
import DisplayHeader from '@/components/landing/DisplayHeader/DisplayHeader.vue';
|
|
|
|
const route = useRoute();
|
|
|
|
const isCategoryPage = computed(() => /^\/[^/]+\/[^/]+$/.test(route.path));
|
|
|
|
const activeItem = computed(() => {
|
|
if (route.path === '/') return 'home';
|
|
return null;
|
|
});
|
|
</script>
|