b7addb5c7a
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
299 B
Vue
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>
|