Skip to content

Commit

Permalink
fix(nuxt): fix component path (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano authored Mar 9, 2023
1 parent e70602c commit 7c358ad
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3,487 deletions.
13 changes: 13 additions & 0 deletions packages/nuxt/playground/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ const isOpen = ref(false);
const buttonVariants = ['default', 'outlined', 'text', 'disabled', 'loading'];
const sheetOpen = ref(false);
const rating = ref(2);
</script>

<template>
Expand Down Expand Up @@ -270,6 +272,10 @@ const sheetOpen = ref(false);
},
]"
/>

<VTabs>
<VTabsSlider />
</VTabs>
</div>

<hr class="dark:border-neutral-700" />
Expand Down Expand Up @@ -331,6 +337,7 @@ const sheetOpen = ref(false);
<div>
<VPagination :model-value="1" :items-per-page="10" :total-items="50" />
</div>

<hr class="dark:border-neutral-700" />
<h3 class="text-xl font-semibold">BottomSheet</h3>
<div>
Expand All @@ -355,6 +362,12 @@ const sheetOpen = ref(false);
</VBottomSheetFooter>
</VBottomSheet>
</div>

<hr class="dark:border-neutral-700" />
<h3 class="text-xl font-semibold">Rating</h3>
<div>
<VRating v-model:rating="rating" />
</div>
</div>
</template>

Expand Down
Loading

0 comments on commit 7c358ad

Please sign in to comment.