mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2025-12-12 01:47:08 +00:00
16 lines
404 B
Vue
16 lines
404 B
Vue
<template>
|
|
<view class="w-screen h-screen flex flex-col items-center justify-center">
|
|
<u-empty
|
|
:icon="img('static/resource/images/site/close.png')"
|
|
:text="t('siteNonexistence')"
|
|
>
|
|
</u-empty>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { img } from '@/utils/common'
|
|
import { t } from '@/locale'
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style> |