add video collect

This commit is contained in:
2023-10-30 19:27:28 +08:00
parent 49bdea87f7
commit f42307902f
14 changed files with 1006 additions and 57 deletions

View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
import { NButton, NElement, NLayoutContent, NResult } from 'naive-ui'
</script>
<template>
<NLayoutContent tag="div" style="height: 100vh;position: relative;">
<NResult status="404" title="404" description="页面不存在" style="position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%);">
<template #footer>
<NButton type="primary" size="large" @click="$router.push({ name: 'index' })">返回首页</NButton>
</template>
</NResult>
</NLayoutContent>
</template>