From eb387dbd90a2a891ee5ee4458e32cccb460fd9b1 Mon Sep 17 00:00:00 2001 From: Cristiano Magro <cristiano.magro@vola.it> Date: Mon, 06 Jan 2025 18:15:48 +0100 Subject: [PATCH] first components e props --- 09 - deeper into components/cmp-adv-06-scoped-slots/src/components/CourseGoals.vue | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/09 - deeper into components/cmp-adv-06-scoped-slots/src/components/CourseGoals.vue b/09 - deeper into components/cmp-adv-06-scoped-slots/src/components/CourseGoals.vue new file mode 100644 index 0000000..aed46e7 --- /dev/null +++ b/09 - deeper into components/cmp-adv-06-scoped-slots/src/components/CourseGoals.vue @@ -0,0 +1,17 @@ +<template> + <ul> + <li v-for="goal in goals" :key="goal"> + <slot :item="goal" another-prop="..."></slot> + </li> + </ul> +</template> + +<script> +export default { + data() { + return { + goals: ['Finish the course', 'Learn Vue'], + }; + }, +}; +</script> \ No newline at end of file -- Gitblit v1.8.0