Skip to content

Commit

Permalink
fix: release the changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawntraoz committed Aug 10, 2023
1 parent e56d333 commit ab997af
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions playground/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ const story = await useAsyncStoryblok("vue", {
language: "en",
resolve_relations: "popular-articles.articles"
});
const richText = computed(() => renderRichText(story.value.content.richText));
</script>

<template>
<div>
<NuxtLink to="vue">Vue</NuxtLink>
<div v-html="richText"></div>
<NuxtLink to="vue"> Vue </NuxtLink>
<div v-html="richText" />
<StoryblokComponent v-if="story" :blok="story.content" />
</div>
</template>

0 comments on commit ab997af

Please sign in to comment.