You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
491 B
20 lines
491 B
<template>
|
|
<!-- 使用 ExceptionPage 组件来显示 500 错误页面 -->
|
|
<exception-page type="500" />
|
|
</template>
|
|
|
|
<script>
|
|
// 导入 ExceptionPage 组件,用于展示异常页面
|
|
import { ExceptionPage } from '../../components'
|
|
// 导出一个包含 components 属性的默认对象,注册 ExceptionPage 组件
|
|
export default {
|
|
components: {
|
|
ExceptionPage
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
>/* 此处添加组件的样式,由于没有样式内容,所以留空 */
|
|
</style>
|