mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
21 lines
456 B
Vue
21 lines
456 B
Vue
<script setup lang="ts">
|
|
import { $t } from '@/locales';
|
|
|
|
defineOptions({
|
|
name: 'LookForward'
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="size-full min-h-520px flex-col-center gap-24px overflow-hidden">
|
|
<div class="flex text-400px text-primary">
|
|
<SvgIcon local-icon="expectation" />
|
|
</div>
|
|
<slot>
|
|
<h3 class="text-28px text-primary font-500">{{ $t('common.lookForward') }}</h3>
|
|
</slot>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|