18 lines
390 B
Vue
18 lines
390 B
Vue
<script setup>
|
|
import PackagesSection from "../components/packages/PackagesSection.vue";
|
|
import { useRoute } from 'vue-router';
|
|
import { computed } from 'vue';
|
|
|
|
const route = useRoute();
|
|
const category = computed(() => route.meta.category || null);
|
|
</script>
|
|
|
|
<template>
|
|
<main>
|
|
<PackagesSection id="paket" :initialCategory="category" />
|
|
</main>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|