|
@@ -74,6 +74,10 @@ function handleClick(path: string) {
|
|
|
window.open(path, '_blank');
|
|
window.open(path, '_blank');
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+function handleHome() {
|
|
|
|
|
+ router.push('/');
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
watch(
|
|
watch(
|
|
|
() => isLogin.value,
|
|
() => isLogin.value,
|
|
|
(newValue) => {
|
|
(newValue) => {
|
|
@@ -90,7 +94,14 @@ watch(
|
|
|
|
|
|
|
|
<template>
|
|
<template>
|
|
|
<div class="mb-[32px] flex items-center justify-between">
|
|
<div class="mb-[32px] flex items-center justify-between">
|
|
|
- <img :src="Logo" alt="logo" class="logo" height="30px" width="138px" />
|
|
|
|
|
|
|
+ <img
|
|
|
|
|
+ :src="Logo"
|
|
|
|
|
+ alt="logo"
|
|
|
|
|
+ class="logo"
|
|
|
|
|
+ height="30px"
|
|
|
|
|
+ width="138px"
|
|
|
|
|
+ @click="handleHome"
|
|
|
|
|
+ />
|
|
|
<ul class="menu flex gap-[60px] text-xs">
|
|
<ul class="menu flex gap-[60px] text-xs">
|
|
|
<li
|
|
<li
|
|
|
v-for="menuItem in menus"
|
|
v-for="menuItem in menus"
|