29 lines
393 B
Markdown
29 lines
393 B
Markdown
<cn>
|
|
#### 500
|
|
æåĄå¨åįäēé蝝ã
|
|
</cn>
|
|
|
|
<us>
|
|
#### 500
|
|
The server is wrong.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<a-result status="500" title="500" sub-title="Sorry, the server is wrong.">
|
|
<template #extra>
|
|
<a-button type="primary">
|
|
Back Home
|
|
</a-button>
|
|
</template>
|
|
</a-result>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
```
|