Files
site/resources/js/Shared/MetaHead.vue
2025-04-21 16:03:20 +02:00

18 lines
265 B
Vue

<template>
<Head :title="title ? `${title} - Тизер` : 'Тизер'">
<slot />
</Head>
</template>
<script>
import { Head } from "@inertiajs/inertia-vue3";
export default {
components: {
Head,
},
props: {
title: String,
},
};
</script>