docs: bump @nuxt-themes/ui-kit

This commit is contained in:
Benjamin Canac
2023-08-07 22:32:14 +02:00
parent 451e72a583
commit 16ac4a0533
7 changed files with 120 additions and 63 deletions

View File

@@ -1,11 +1,11 @@
<script setup>
const commandPaletteRef = ref()
const links = inject('links')
const navigation = inject('navigation')
const { data: files } = await useLazyAsyncData('search', () => queryContent().where({ _type: 'markdown' }).find(), { default: () => [] })
const groups = computed(() => links.value.map(item => ({
const groups = computed(() => navigation.value.map(item => ({
key: item.to,
label: item.label,
commands: files.value.filter(file => file._path.startsWith(item.to)).map(file => ({