commit | author | age | ||
32b599 | 1 | <template> |
CM | 2 | <ul> |
3 | <knowledge-element | |
4 | v-for="topic in topics" | |
5 | :key="topic.id" | |
6 | :id="topic.id" | |
7 | :topic-name="topic.title" | |
8 | :description="topic.description" | |
9 | ></knowledge-element> | |
10 | </ul> | |
11 | </template> | |
12 | ||
13 | <script> | |
14 | export default { | |
1dc4e4 | 15 | inject: ['topics'], |
32b599 | 16 | }; |
CM | 17 | </script> |