You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
363 B
14 lines
363 B
<template>
|
|
<div class="w-screen h-screen bg-[#fff] flex flex-col items-center justify-center">
|
|
<el-empty :description="t('siteClose')" :image="img('static/resource/images/site/close.png')" image-size="200px" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
definePageMeta({
|
|
layout: "container"
|
|
});
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|