We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6579bc9 commit 32256a6Copy full SHA for 32256a6
src/core/render/compiler/link.js
@@ -35,7 +35,9 @@ export const linkCompiler = ({
35
}
36
} else {
37
if (!isAbsolutePath(href) && href.startsWith('./')) {
38
- href = router.toURL(href, null, router.getCurrentPath()).replace(/^#\//, '/');
+ href = router
39
+ .toURL(href, null, router.getCurrentPath())
40
+ .replace(/^#\//, '/');
41
42
attrs.push(href.indexOf('mailto:') === 0 ? '' : `target="${linkTarget}"`);
43
attrs.push(
0 commit comments