1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| <template>
| <li>
| <h3>{{ topicName }}</h3>
| <p>{{ description }}</p>
| <button @click="selectTopic(id)">Learn More</button>
| </li>
| </template>
|
| <script>
| export default {
| inject: ['selectTopic'],
| props: ['id', 'topicName', 'description'],
| emits: ['select-topic'],
| };
| </script>
|
|