2023-06-05 09:25:16 +08:00

25 lines
472 B
Vue

<template>
<div class="app-container">
<a-result
status="404"
subtitle="抱歉,页面走丢了~"
>
<template #extra>
<a-space>
<a-button type="primary">
返回
</a-button>
</a-space>
</template>
</a-result>
</div>
</template>
<style lang="scss" scoped>
.app-container {
display: flex;
flex-direction: column;
justify-content: center;
height: calc(100vh - 122px);
}
</style>