diff --git a/docs/components/TheHeader.vue b/docs/components/TheHeader.vue
index 2455fbd..79f8910 100644
--- a/docs/components/TheHeader.vue
+++ b/docs/components/TheHeader.vue
@@ -39,7 +39,7 @@ onMounted(() => {
:delay="600"
/>
The easiest way to work with dates in JavaScript.
diff --git a/docs/components/TheNavigation.vue b/docs/components/TheNavigation.vue
index 38556f2..24a16f5 100644
--- a/docs/components/TheNavigation.vue
+++ b/docs/components/TheNavigation.vue
@@ -29,6 +29,7 @@ const results = ref>([
id: "#modifying",
},
])
+const initialShow = ref(undefined)
onMounted(() => {
search.value?.focus()
@@ -38,11 +39,18 @@ onMounted(() => {
search.value?.focus()
}
})
+
+ setTimeout(() => {
+ initialShow.value = true
+ }, 2100)
})
-