Skip to content

Commit

Permalink
playground(link): fix urls
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Sep 17, 2024
1 parent df72003 commit a8b26eb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions playground/app/pages/components/link.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,27 +27,27 @@
</div>

<div class="flex flex-col items-start gap-2 text-sm">
<ULink to="/link" raw>
<ULink to="/components/link" raw>
Link raw
</ULink>

<ULink to="/link">
<ULink to="/components/link">
Link active
</ULink>
<ULink to="/link" class="font-medium" active-class="text-gray-900 dark:text-white">
<ULink to="/components/link" class="font-medium" active-class="text-gray-900 dark:text-white">
Link active with class
</ULink>
<ULink to="/link" disabled>
<ULink to="/components/link" disabled>
Link active disabled
</ULink>

<ULink to="/button">
<ULink to="/components/button">
Link inactive
</ULink>
<ULink to="/button" class="font-medium" inactive-class="hover:text-primary-500 dark:hover:text-primary-400">
<ULink to="/components/button" class="font-medium" inactive-class="hover:text-primary-500 dark:hover:text-primary-400">
Link inactive with class
</ULink>
<ULink to="/button" disabled>
<ULink to="/components/button" disabled>
Link inactive disabled
</ULink>
</div>
Expand Down

0 comments on commit a8b26eb

Please sign in to comment.