gtsoft-snail-job-server/frontend/src/views/exception/404.vue
2023-01-14 21:02:18 +08:00

21 lines
394 B
Vue

<template>
<a-result status="404" title="404" sub-title="Sorry, the page you visited does not exist.">
<template #extra>
<a-button type="primary" @click="toHome">
Back Home
</a-button>
</template>
</a-result>
</template>
<script>
export default {
name: 'Exception404',
methods: {
toHome () {
this.$router.push({ path: '/' })
}
}
}
</script>