Files
SuBlog/pages/[...slug].vue
T
sutong b7addb5c7a chore: 初始化项目仓库
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 21:27:39 +08:00

12 lines
447 B
Vue

<script setup lang="ts">
useSeoMeta({ title: '404 页面不存在' })
</script>
<template>
<div class="flex min-h-[70vh] flex-col items-center justify-center gap-4 px-4 anim-fade-in-up">
<h1 class="text-6xl font-bold" style="color: var(--color-text-secondary)">404</h1>
<p style="color: var(--color-text-secondary)">页面不存在</p>
<NuxtLink to="/" class="btn-pill btn-primary mt-2">返回首页</NuxtLink>
</div>
</template>