Files
mom-web/src/views/Error/403.vue
2026-03-05 16:52:12 +08:00

9 lines
172 B
Vue

<template>
<Error type="403" @error-click="push('/')" />
</template>
<script lang="ts" setup>
defineOptions({ name: 'Error403' })
const { push } = useRouter()
</script>