Последняя версия с сервера прошлого разработчика
This commit is contained in:
18
resources/js/Shared/MetaHead.vue
Executable file
18
resources/js/Shared/MetaHead.vue
Executable file
@@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<Head :title="title ? `${title} - Тизер` : 'Тизер'">
|
||||
<slot />
|
||||
</Head>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { Head } from "@inertiajs/inertia-vue3";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Head,
|
||||
},
|
||||
props: {
|
||||
title: String,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user