vue-vben-admin/src/views/sys/exception/LoadTimeOut.vue

18 lines
410 B
Vue
Raw Normal View History

2020-09-28 20:19:10 +08:00
<template>
<Exception :status="ExceptionEnum.PAGE_TIMEOUT" />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { Exception } from '/@/views/sys/exception';
import { ExceptionEnum } from '/@/enums/exceptionEnum';
export default defineComponent({
name: 'LoadTimeout',
components: { Exception },
setup() {
return { ExceptionEnum };
},
});
</script>