We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c04a425 commit c641f6dCopy full SHA for c641f6d
app/app.config.ts
@@ -21,4 +21,3 @@ export default defineAppConfig({
21
},
22
23
});
24
-
app/components/articles/Grid.vue
@@ -14,7 +14,10 @@ defineProps<{
14
</script>
15
16
<template>
17
- <div v-if="articles.length > 0" class="card-grid">
+ <div
18
+ v-if="articles.length > 0"
19
+ class="card-grid"
20
+ >
<ArticlesCard
v-for="article in articles"
:key="article._path"
app/components/ui/NavTree.vue
@@ -1,6 +1,8 @@
1
<script setup lang="ts">
2
import { TreeItem, TreeRoot } from 'radix-vue';
3
4
+// TODO: Use the correct type
5
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
6
defineProps<{ items: any[] }>();
7
8
0 commit comments