Docs Cleanup

This commit is contained in:
David Haz
2025-07-12 15:28:52 +03:00
parent 62cdbc2dba
commit 056d2c0330
21 changed files with 365 additions and 588 deletions

View File

@@ -13,12 +13,10 @@ 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;
});
const isCategoryPage = computed(() => {
return /^\/[^/]+\/[^/]+$/.test(route.path);
});
</script>