mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-06-29 11:52:00 +08:00
14 lines
263 B
Vue
14 lines
263 B
Vue
<template>
|
|
<Error type="403" @error-click="errorClick()" />
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { Error } from '@/components/Error'
|
|
import { useRouter } from 'vue-router'
|
|
|
|
const { push } = useRouter()
|
|
|
|
const errorClick = () => {
|
|
push('/')
|
|
}
|
|
</script>
|