Files
ntspi-app/resources/js/Components/AdminIndexHeaderTitle.vue
T
2024-09-19 16:06:49 +05:00

21 lines
251 B
Vue

<template>
<div>
<h2 class="text-lg font-semibold text-gray-800 dark:text-gray-200">
{{ title }}
</h2>
</div>
</template>
<script>
export default {
name: "AdminIndexHeaderTitle",
props: [
'title'
]
}
</script>
<style scoped>
</style>