1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<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>