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

14 lines
299 B
Vue

<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<style>
/* 修复 Nuxt 客户端导航时 Tailwind CSS 未加载导致的链接下划线闪烁 */
/* 文章正文 (.prose) 内的链接保留原始样式 */
a:not(.prose a) {
text-decoration-line: none !important;
}
</style>