Files
ntspi-app/resources/js/Components/AppHead.vue
T
2024-11-03 17:42:10 +05:00

19 lines
915 B
Vue

<script setup>
import { Head } from '@inertiajs/vue3'
defineProps({
title: String,
description: String,
image: String,
})
</script>
<template>
<Head :title="title ? `${title} - Нижнетагильский государственый-педагогический институт` : 'Нижнетагильский государственый-педагогический институт'">
<meta name="description" :content="description">
<meta name="robots" content="index, follow">
<meta property="og:title" :content="title ? `${title} - Нижнетагильский государственый-педагогический институт` : 'Нижнетагильский государственый-педагогический институт'">
<meta property="og:description" :content="description">
<meta property="og:image" content="/img/thumbnail-1.png">
</Head>
</template>