Files
skt-vuetify-templates/src/views/errors/ServerError.vue
T

15 lines
314 B
Vue

<template>
<error-shell
:code="500"
color="error"
description="伺服器發生非預期錯誤,請稍後再試。"
:icon="mdiServer"
title="系統發生錯誤"
/>
</template>
<script setup lang="ts">
import { mdiServer } from '@mdi/js'
import ErrorShell from './ErrorShell.vue'
</script>