]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
chore: fix non relative imports
authorEduardo San Martin Morote <posva13@gmail.com>
Fri, 8 Aug 2025 07:48:06 +0000 (09:48 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Fri, 8 Aug 2025 07:48:06 +0000 (09:48 +0200)
packages/router/src/experimental/route-resolver/resolver-dynamic.ts

index baca4b25a9e1f9531a7f7738c337baa6bc432c51..2b8f25c827bc8d4304fc143f96a4018342edb6cf 100644 (file)
@@ -3,8 +3,8 @@ import {
   LocationNormalized,
   parseURL,
   resolveRelativePath,
-} from 'src/location'
-import { normalizeQuery, stringifyQuery, parseQuery } from 'src/query'
+} from '../../location'
+import { normalizeQuery, stringifyQuery, parseQuery } from '../../query'
 import type { MatcherParamsFormatted } from './matchers/matcher-pattern'
 import type { ResolverLocationAsRelative } from './resolver-abstract'
 import type { ResolverLocationAsPathAbsolute } from './resolver-abstract'
@@ -17,8 +17,8 @@ import {
   RecordName,
   ResolverLocationResolved,
 } from './resolver-abstract'
-import { comparePathParserScore } from 'src/matcher/pathParserRanker'
-import { warn } from 'src/warning'
+import { comparePathParserScore } from '../../matcher/pathParserRanker'
+import { warn } from '../../warning'
 import type {
   MatcherPatternPath,
   MatcherPatternQuery,