1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <template>
| <ul>
| <knowledge-element
| v-for="topic in topics"
| :key="topic.id"
| :id="topic.id"
| :topic-name="topic.title"
| :description="topic.description"
| @select-topic="$emit('select-topic', $event)"
| ></knowledge-element>
| </ul>
| </template>
|
| <script>
| export default {
| inject: ['topics'],
| emits: ['select-topic']
| };
| </script>
|
|