Skip to content

Commit d51d24a

Browse files
chore(VLink): adapt stories
1 parent a98ada9 commit d51d24a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/molecules/VLink/ScopedSlot.stories.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
</NuxtStoryVariant>
1010
<NuxtStoryVariant title="External url">
1111
<VLink v-slot="linkProps" url="https://google.com" custom>
12-
<VButton label="Button Slot" v-bind="linkProps" filled theme="light" />
12+
<VButton label="Bind all scoped slot props" v-bind="linkProps" />
1313
</VLink>
14-
</NuxtStoryVariant>
15-
<NuxtStoryVariant title="External url">
1614
<VLink v-slot="{ href, target, rel }" url="https://google.com" custom>
17-
<VButton :href="href" :target="target" :rel="rel" filled icon-name="check" label="Label" />
15+
<VButton :href="href" :target="target" :rel="rel" label="Scoped slot props destructuring" />
1816
</VLink>
17+
</NuxtStoryVariant>
18+
<NuxtStoryVariant title="External url">
1919
<VLink v-slot="{ href, target, rel }" url="https://google.com" custom>
2020
<VButton :href="href" :target="target" :rel="rel" theme="dark" filled icon-name="check" label="Label" />
2121
</VLink>

0 commit comments

Comments
 (0)