commit | author | age | ||
4f1007 | 1 | <template> |
CM | 2 | <ul> |
3 | <li v-for="goal in goals" :key="goal"> | |
4 | <slot :item="goal" another-prop="..."></slot> | |
5 | </li> | |
6 | </ul> | |
7 | </template> | |
8 | ||
9 | <script> | |
10 | export default { | |
11 | data() { | |
12 | return { | |
13 | goals: ['Finish the course', 'Learn Vue'], | |
14 | }; | |
15 | }, | |
16 | }; | |
17 | </script> |