18 lines
265 B
Vue
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>
|