24 lines
428 B
Vue
24 lines
428 B
Vue
<script setup>
|
|
|
|
const route = useRoute();
|
|
const {toTitleCase} = useUtilities();
|
|
|
|
useHead({
|
|
title :toTitleCase(route.params.name )
|
|
});
|
|
|
|
definePageMeta({
|
|
layout: "custom"
|
|
});
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<h1>test</h1>
|
|
<CarDetailHero/>
|
|
<CarDetailAttributes/>
|
|
<CarDetailDescription/>
|
|
<CarDetailContact/>
|
|
</div>
|
|
</template> |