]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
docs: comments
authorEduardo San Martin Morote <posva13@gmail.com>
Sat, 18 Oct 2025 09:51:34 +0000 (11:51 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Sat, 18 Oct 2025 09:51:34 +0000 (11:51 +0200)
packages/router/src/experimental/route-resolver/resolver-fixed.ts

index 70b91609871ce87aa114fddb9ed5a4ecee4f3b19..8533b25d7d8c3f5ce9beb20095e6786fd457ea30 100644 (file)
@@ -66,13 +66,22 @@ export interface EXPERIMENTAL_ResolverRecord_Base {
 export interface EXPERIMENTAL_ResolverRecord_Group
   extends EXPERIMENTAL_ResolverRecord_Base {
   /**
-   * A group route cannot be matched directly and so names are not allowed.
+   * A group route cannot be matched directly and cannot be named.
    */
   name?: undefined
+
+  /**
+   * A group route can **only** match the `query`.
+   */
   path?: undefined
+
   // Query is the only kind of matcher that is non-exclusive
   // all matched records get their queries merged
   // query?: undefined
+
+  /**
+   * A group route can **only** match the `query`.
+   */
   hash?: undefined
 }