it-tools/packages/app/app.vue
Corentin Thomasset b88f13a7ca
feat(tools): added token generator
- Added Slider component to the UI library
- Added Checkbox component to the UI library
- Added Textarea component to the UI library
2024-10-26 23:51:56 +02:00

10 lines
221 B
Vue

<script setup lang="ts">
import CommandPalette from './src/modules/command-palette/components/command-palette.vue';
</script>
<template>
<NuxtLayout>
<CommandPalette />
<NuxtPage />
</NuxtLayout>
</template>