mirror of
https://gitee.com/elegant_wings/dbd-meeting-html.git
synced 2025-06-21 13:49:37 +08:00
21 lines
394 B
Vue
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>
|