Skip to content

Commit

Permalink
feat: add BaseFocusLoop demos to playground
Browse files Browse the repository at this point in the history
  • Loading branch information
driss-chelouati committed Dec 18, 2023
1 parent be1c41d commit d52ab4b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .playground/pages/tests/base/focus-loop.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<script setup lang="ts">
definePageMeta({
title: 'BaseFocusLoop',
icon: 'mingcute:back-fill',
description: 'Focus Loop component',
section: 'base',
})
</script>

<template>
<div>
<NuiPreviewContainer title="BaseFocusLoop">
<NuiPreview title="Main demo" description="Focus Loop component demo">
<BaseFocusLoop class="flex flex-wrap items-end gap-2">
<BaseButton>Button</BaseButton>
<BaseButton color="primary">Button</BaseButton>
<BaseButton color="success">Button</BaseButton>
<BaseButton color="info">Button</BaseButton>
<BaseButton color="warning">Button</BaseButton>
<BaseButton color="danger">Button</BaseButton>
<BaseButton color="muted">Button</BaseButton>
</BaseFocusLoop>
</NuiPreview>
</NuiPreviewContainer>
</div>
</template>

0 comments on commit d52ab4b

Please sign in to comment.