blob: 00194ac1ea72e180236ca761039c452b10935334 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<template>
<h2 class="content-title">
{{ title }}
</h2>
</template>
<script>
export default {
props: {
title: {
type: String,
required: true
}
}
}
</script>
|