mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 23:36:15 -04:00

- Added Slider component to the UI library - Added Checkbox component to the UI library - Added Textarea component to the UI library
10 lines
221 B
Vue
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>
|