Cristiano Magro
2025-01-06 eb387dbd90a2a891ee5ee4458e32cccb460fd9b1
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>