From 398bf2fd330e581ba6c20be8968f243b99d5ae75 Mon Sep 17 00:00:00 2001 From: pikax Date: Sat, 22 Aug 2020 14:33:34 +0100 Subject: [PATCH] chore: add other keys --- src/client/app/router.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/client/app/router.ts b/src/client/app/router.ts index f3b97401..02499af6 100644 --- a/src/client/app/router.ts +++ b/src/client/app/router.ts @@ -98,6 +98,9 @@ export function createRouter( // only intercept inbound links if ( !e.ctrlKey && + !e.shiftKey && + !e.altKey && + !e.metaKey && target !== `_blank` && protocol === currentUrl.protocol && hostname === currentUrl.hostname