diff --git a/src/data/roadmaps/vue/content/v-cloak@RrSekP8Ub01coegMwLP6a.md b/src/data/roadmaps/vue/content/v-cloak@RrSekP8Ub01coegMwLP6a.md
index 733c98f6f..966de79e6 100644
--- a/src/data/roadmaps/vue/content/v-cloak@RrSekP8Ub01coegMwLP6a.md
+++ b/src/data/roadmaps/vue/content/v-cloak@RrSekP8Ub01coegMwLP6a.md
@@ -1 +1,22 @@
-# v-cloak
\ No newline at end of file
+# v-cloak
+
+The v-cloak directive is used to prevent the uncompiled Vue template from being visible while the Vue instance is still loading. It temporarily hides the content until Vue has finished compiling the template
+
+The v-cloak directive remains until the component instance is mounted.
+```vue
+
` will not be visible until the compilation is done.
+
+Visit the following resources to learn more:
+
+- [@official@v-cloak documentation](https://vuejs.org/api/built-in-directives.html#v-cloak)
diff --git a/src/data/roadmaps/vue/content/v-slot@m9pQ3daR3KiwRATcQysHA.md b/src/data/roadmaps/vue/content/v-slot@m9pQ3daR3KiwRATcQysHA.md
index a72872956..16cec54b7 100644
--- a/src/data/roadmaps/vue/content/v-slot@m9pQ3daR3KiwRATcQysHA.md
+++ b/src/data/roadmaps/vue/content/v-slot@m9pQ3daR3KiwRATcQysHA.md
@@ -1 +1,24 @@
-# v-slot
\ No newline at end of file
+# v-slot
+
+The v-slot directive to define slots in components, allowing you to pass and render content dynamically inside a component.
+
+For named slots, you use v-slot with a specific slot name. This lets you pass different content to different parts of a component:
+
+```vue
+
+
+
+ Header Content
+
+
+ Footer Content
+
+
+
+```
+
+The shorthand for `v-slot` is `#`, for example `v-slot:header` becomes `#header`.
+
+Visit the following resources to learn more:
+
+- [@official@v-slot documentation](https://vuejs.org/api/built-in-directives.html#v-slot)