mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2026-03-24 22:42:26 +00:00
20 lines
262 B
Vue
20 lines
262 B
Vue
<template>
|
|
<error-page :code="500" desc="糟糕,出了点问题" />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import ErrorPage from "./components/error-page.vue";
|
|
|
|
export default {
|
|
cool: {
|
|
route: {
|
|
path: "/500"
|
|
}
|
|
},
|
|
|
|
components: {
|
|
ErrorPage
|
|
}
|
|
};
|
|
</script>
|