diff --git a/components/toolbar/Top.vue b/components/toolbar/Top.vue
index c0b61ac..d59d250 100644
--- a/components/toolbar/Top.vue
+++ b/components/toolbar/Top.vue
@@ -3,7 +3,11 @@ const props = defineProps<{
fetchNote: boolean
}>()
+const route = useRoute()
+
const showSlider = ref(false)
+
+const query = computed(() => pickFirstQuery(route.query.q) || '')
@@ -14,7 +18,7 @@ const showSlider = ref(false)
-
+