1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2026-01-23 16:10:21 +08:00

1 Commits

Author SHA1 Message Date
leipu
864b537164 fix:isme.top 正确指向官网 2025-03-25 16:21:07 +08:00

View File

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