mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-15 09:57:39 +08:00
11 lines
309 B
Vue
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>
|