diff --git a/README.md b/README.md index 24de3cb..ea03292 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,12 @@ - [daisyUI](https://daisyui.com/) - [iconify](https://iconify.design/) -> [!WARNING] -> Nuxt Contentのバージョンを`2.8.2`から上げるとコードブロックのハイライトが消える不具合がある +> [!WARNING] +> +> - Nuxt Contentのバージョンを`2.8.2`から上げるとコードブロックのハイライトが消える不具合がある +> see @https://github.com/nuxt/content/issues/2473 > +> - Vueのバージョンを3.4.8に止めないと画面の遷移時にエラーになる +> see @https://github.com/nuxt/nuxt/issues/25214 ## 環境構築 diff --git a/components/content/QuoteArticleCard.vue b/components/content/QuoteArticleCard.vue index 1279ec5..c8128c4 100644 --- a/components/content/QuoteArticleCard.vue +++ b/components/content/QuoteArticleCard.vue @@ -7,11 +7,8 @@ const props = withDefaults(defineProps(), { url: "", }); -const { data: article, pending } = await useLazyAsyncData( - () => queryContent(props.url).without(["body"]).findOne(), - { - server: false, - } +const { data: article, pending } = await useLazyAsyncData(`quote-article-card-${props.url}`, () => + queryContent(props.url).without(["body"]).findOne() );