24 lines
354 B
Vue
24 lines
354 B
Vue
<script setup>
|
|
|
|
const props = defineProps(['pagetitle', 'pagesubtitle'])
|
|
|
|
</script>
|
|
|
|
|
|
<style>
|
|
|
|
.pagetitle, .pagesubtitle {
|
|
margin: auto;
|
|
width: fit-content;
|
|
text-align: center;
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
<template>
|
|
<div>
|
|
<h1 class="pagetitle">{{ pagetitle }}</h1>
|
|
<h2 class="pagesubtitle">{{ pagesubtitle }}</h2>
|
|
</div>
|
|
</template> |