1
0

nuxt初始化

This commit is contained in:
2026-04-20 09:45:20 +08:00
parent e90903a378
commit d3eb1d3424
508 changed files with 35562 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<script setup lang="ts">
defineProps<{
title: string
description?: string
}>()
</script>
<template>
<main class="route-stub">
<div class="route-stub__inner">
<h1>{{ title }}</h1>
<p>{{ description || 'This route has been reserved and will be migrated from the legacy site in a later batch.' }}</p>
</div>
</main>
</template>
<style scoped>
.route-stub {
padding: 64px 20px;
}
.route-stub__inner {
max-width: 960px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
padding: 32px;
box-shadow: 0 12px 24px rgba(16, 37, 65, 0.08);
}
</style>