初始化:创建基于 Nuxt Content 的博客项目

This commit is contained in:
zibright
2025-07-22 16:15:28 +08:00
commit 0e18cc8790
9 changed files with 10050 additions and 0 deletions

11
pages/[...slug].vue Normal file
View File

@@ -0,0 +1,11 @@
<template>
<article class="prose lg:prose-xl mx-auto">
<ContentDoc />
</article>
</template>
<style>
.prose {
max-width: 65ch;
margin: 0 auto;
}