diff --git a/src/layouts/modules/global-header/index.vue b/src/layouts/modules/global-header/index.vue index d379a2d..08477c3 100644 --- a/src/layouts/modules/global-header/index.vue +++ b/src/layouts/modules/global-header/index.vue @@ -45,6 +45,10 @@ const headerMenus = computed(() => { return []; }); + +const href = (url: string) => { + window.open(url, '_blank'); +};