Files
vtj/apps/plugin/dev/views/not-found.vue
2024-04-22 11:11:29 +08:00

11 lines
309 B
Vue

<template>
<XContainer class="not-found" fit justify="center">
<ElEmpty description="找不到页面【404】"></ElEmpty>
</XContainer>
</template>
<script lang="ts" setup>
import { XContainer } from '@vtj/web';
import { ElEmpty } from 'element-plus';
</script>
<style lang="scss" scoped></style>