23 lines
426 B
Vue
23 lines
426 B
Vue
<script setup>
|
|
const route = useRoute();
|
|
const {toTitleCase} = useUtilities();
|
|
|
|
useHead({
|
|
title : `${route.params.make ? toTitleCase(route.params.make) : 'Cars'} in ${toTitleCase(route.params.city)}`,
|
|
});
|
|
|
|
definePageMeta({
|
|
layout: "custom"
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
|
|
|
|
<div class="mt-32 flex">
|
|
<CarSideBar/>
|
|
<NuxtPage />
|
|
</div>
|
|
|
|
|
|
</template> |