mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-10 14:09:25 +00:00
18 lines
410 B
Vue
18 lines
410 B
Vue
<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>
|