it-tools/packages/app/app.vue

11 lines
221 B
Vue
Raw Normal View History

<script setup lang="ts">
import CommandPalette from './src/modules/command-palette/components/command-palette.vue';
</script>
2024-10-24 14:40:54 +02:00
<template>
2024-10-24 21:05:54 +02:00
<NuxtLayout>
<CommandPalette />
2024-10-24 21:05:54 +02:00
<NuxtPage />
</NuxtLayout>
2024-10-24 14:40:54 +02:00
</template>