1
2
3
4
5
6
7
8
9
10
11
12
13
| <template>
| <section>
| <h2>Select a Topic</h2>
| <knowledge-grid :topics="topics" @select-topic="$emit('select-topic', $event)"></knowledge-grid>
| </section>
| </template>
|
| <script>
| export default {
| props: ['topics'],
| emits: ['select-topic'],
| };
| </script>
|
|