16 lines
331 B
Vue
16 lines
331 B
Vue
|
|
<template>
|
|||
|
|
<n-result
|
|||
|
|
status="404"
|
|||
|
|
title="文档正在编写中..."
|
|||
|
|
description="star一下,来为OpenDataV加速吧"
|
|||
|
|
style="height: 100%"
|
|||
|
|
>
|
|||
|
|
<template #icon>
|
|||
|
|
<img src="/errors/404.png" />
|
|||
|
|
</template>
|
|||
|
|
</n-result>
|
|||
|
|
</template>
|
|||
|
|
<script lang="ts" setup>
|
|||
|
|
import { NResult } from 'naive-ui'
|
|||
|
|
</script>
|