From 489547f32920a3592e264a70ac3b276b46110e9c Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Tue, 12 Aug 2025 10:52:41 +0200 Subject: [PATCH] feat: deprecate end option --- packages/router/src/matcher/pathParserRanker.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/router/src/matcher/pathParserRanker.ts b/packages/router/src/matcher/pathParserRanker.ts index df9bf172..e77ab360 100644 --- a/packages/router/src/matcher/pathParserRanker.ts +++ b/packages/router/src/matcher/pathParserRanker.ts @@ -76,6 +76,8 @@ export interface _PathParserOptions { /** * Should the RegExp match until the end by appending a `$` to it. * + * @deprecated this option will alsways be `true` in the future. Open a discussion in vuejs/router if you need this to be `false` + * * @defaultValue `true` */ end?: boolean -- 2.47.3