From babcb28d0cf6a94e4e5ac0d809cd0a2da0e11a50 Mon Sep 17 00:00:00 2001 From: Ismail Sabet <47750560+ismailsabet@users.noreply.github.com> Date: Wed, 28 Aug 2024 23:09:35 +0300 Subject: [PATCH] docs: add missing `query` returned value from `useRoute()` (#28743) --- docs/3.api/2.composables/use-route.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/3.api/2.composables/use-route.md b/docs/3.api/2.composables/use-route.md index 853fecf83c..cbaabb176c 100644 --- a/docs/3.api/2.composables/use-route.md +++ b/docs/3.api/2.composables/use-route.md @@ -38,6 +38,7 @@ Apart from dynamic parameters and query parameters, `useRoute()` also provides t - `fullPath`: encoded URL associated with the current route that contains path, query and hash - `hash`: decoded hash section of the URL that starts with a # +- `query`: access route query parameters - `matched`: array of normalized matched routes with current route location - `meta`: custom data attached to the record - `name`: unique name for the route record