initial commit
This commit is contained in:
commit
869be69d67
42 changed files with 11444 additions and 0 deletions
18
app/components/common/page-title.vue
Normal file
18
app/components/common/page-title.vue
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue