29 lines
419 B
Markdown
29 lines
419 B
Markdown
<cn>
|
|
#### 404
|
|
此页面未找到。
|
|
</cn>
|
|
|
|
<us>
|
|
#### 404
|
|
The page you visited does not exist.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<a-result status="404" title="404" sub-title="Sorry, the page you visited does not exist.">
|
|
<template #extra>
|
|
<a-button type="primary">
|
|
Back Home
|
|
</a-button>
|
|
</template>
|
|
</a-result>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
```
|