15 lines
322 B
Vue
15 lines
322 B
Vue
<template>
|
|
<error-shell
|
|
:code="503"
|
|
color="warning"
|
|
description="服務目前無法使用,請稍後再試。"
|
|
:icon="mdiServerOff"
|
|
title="服務暫時無法使用"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { mdiServerOff } from '@mdi/js'
|
|
import ErrorShell from './ErrorShell.vue'
|
|
</script>
|