Cristiano Magro
2024-12-30 ac100de8d8e0fc85e34cde9aec6262259b12f96c
commit | author | age
32b599 1 <template>
CM 2   <section>
3     <h2>{{ topicTitle }}</h2>
4     <p>{{ text }}</p>
5   </section>
6 </template>
7
8 <script>
9 export default {
10   props: ['topicTitle', 'text'],
11 };
12 </script>