blob: fdc77b600fe31292c09abf58dafb2d849bf376fd (
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>
|