Skip to content

Commit 1bbed0c

Browse files
committed
fix: playground
1 parent 197f930 commit 1bbed0c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

playground/pages/custom/[[slug]].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const navigationMenuItems = [searchMenuItem, ...stories
1515
.map(s => ({
1616
label: s.pascalName,
1717
icon: 'i-lucide-file-text',
18-
to: `${s.kebabName}`,
18+
to: `/custom/${s.kebabName}`,
1919
})),
2020
]
2121

playground/pages/index.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
<p>Welcome to the Bedtime playground! This demo includes:</p>
55
<ul>
66
<li>
7-
<NuxtLink to="/stories">View Component Stories</NuxtLink>
7+
<NuxtLink to="/stories">Default story viewer</NuxtLink>
8+
</li>
9+
<li>
10+
<NuxtLink to="/custom">Custom story viewer</NuxtLink>
811
</li>
912
</ul>
1013
</div>

0 commit comments

Comments
 (0)