소스 검색

首页点击

shuhao 1 개월 전
부모
커밋
df86e776f1
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      src/components/toolList.vue

+ 6 - 1
src/components/toolList.vue

@@ -7,6 +7,8 @@
 <script setup>
 import {ref} from 'vue'
 import eventBus from "@/api/eventBus";
+import {useRouter} from "vue-router";
+const router = useRouter();
 const props = defineProps({
   direction: {
     type: String,
@@ -28,6 +30,9 @@ const active = ref(0)
 const handleActive = (value,index) =>{
     active.value = index
     emit('handleActive',value)
+    if(index == 0){
+      router.push('/warningHome')
+    }
 }
 </script>
 
@@ -84,4 +89,4 @@ const handleActive = (value,index) =>{
     }
   }
 }
-</style>
+</style>