FlowBL/src/views/Error/500.vue

7 lines
135 B
Vue

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