1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2025-05-01 06:39:01 +08:00

fix:isme.top 正确指向官网

This commit is contained in:
leipu 2025-03-25 16:21:07 +08:00
parent 27a50a99b4
commit 864b537164

View File

@ -33,7 +33,7 @@
class="text-14 text-primary text-highlight hover:underline hover:opacity-80"
href="https://isme.top"
target="_blank"
@click.prevent="message?.info('官网正在火速开发中...')"
@click.prevent="handleLinkClick('https://isme.top')"
>
isme.top
</a>
@ -285,5 +285,7 @@ const skillOption = {
],
}
const message = $message
function handleLinkClick(link) {
window.open(link)
}
</script>