Update EmA.vue

This commit is contained in:
syuilo 2024-08-28 12:16:06 +09:00
parent 374dce7ff8
commit bf1738240a
1 changed files with 1 additions and 5 deletions

View File

@ -4,7 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<a ref="el" :href="to" @click.prevent="nav">
<a ref="el" :href="to" target="_blank" rel="noopener">
<slot></slot>
</a>
</template>
@ -22,8 +22,4 @@ const props = withDefaults(defineProps<{
const el = shallowRef<HTMLElement>();
defineExpose({ $el: el });
function nav(ev: MouseEvent) {
location.href = props.to;
}
</script>