Allows ctrl+clicking internal links (#9603) (#9743)

Co-authored-by: Freeplay <Freeplay@duck.com>
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9743
Co-authored-by: Free <freeplay@duck.com>
Co-committed-by: Free <freeplay@duck.com>
This commit is contained in:
Free 2023-03-22 18:50:30 +00:00 committed by Kainoa Kanter
parent 4714e966f1
commit 4b1af35b39
1 changed files with 19 additions and 15 deletions

View File

@ -1,5 +1,5 @@
<template>
<a :href="to" :class="active ? activeClass : null" @click.prevent="nav" @contextmenu.prevent.stop="onContextmenu" @click.stop>
<a :href="to" :class="active ? activeClass : null" @click="nav" @contextmenu.prevent.stop="onContextmenu" @click.stop>
<slot></slot>
</a>
</template>
@ -80,6 +80,9 @@ function popout() {
}
function nav(ev: MouseEvent) {
if (!ev.ctrlKey) {
ev.preventDefault();
if (props.behavior === 'browser') {
location.href = props.to;
return;
@ -98,5 +101,6 @@ function nav(ev: MouseEvent) {
}
router.push(props.to, ev.ctrlKey ? 'forcePage' : null);
}
}
</script>