12 lines
181 B
Vue
12 lines
181 B
Vue
|
<script setup lang="ts">
|
||
|
import { onMounted } from 'vue';
|
||
|
|
||
|
const props = defineProps<{
|
||
|
title: string
|
||
|
}>()
|
||
|
|
||
|
onMounted(function () {
|
||
|
document.title = props.title
|
||
|
})
|
||
|
|
||
|
</script>
|