mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-12 18:15:07 +08:00
11 lines
169 B
Vue
11 lines
169 B
Vue
<template>
|
|
<Error @error-click="errorClick()" />
|
|
</template>
|
|
<script setup lang="ts">
|
|
const { push } = useRouter()
|
|
|
|
const errorClick = () => {
|
|
push('/')
|
|
}
|
|
</script>
|