movie-night-web/app/components/common/page-title.vue

18 lines
232 B
Vue
Raw Normal View History

2026-02-16 19:12:00 -06:00
<script lang="ts" setup>
const props = defineProps<{
title: string
}>()
</script>
<template>
<h2>{{ props.title }}</h2>
</template>
<style scoped>
h1 {
font-size: 2rem;
font-weight: bold;
margin-bottom: 1rem;
}
</style>