16 lines
333 B
Vue
16 lines
333 B
Vue
<template>
|
|
<error-shell
|
|
code="MAINTENANCE"
|
|
color="info"
|
|
description="目前系統正在維護,請稍後再試。"
|
|
:icon="mdiTools"
|
|
:show-login="false"
|
|
title="系統維護中"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { mdiTools } from '@mdi/js'
|
|
import ErrorShell from './ErrorShell.vue'
|
|
</script>
|