UNPKG

nuxt-strapi-blocks-renderer

Version:

Renderer for the strapi CMS blocks text content element.

10 lines (9 loc) 325 B
import { useRuntimeConfig } from "#imports"; import { renderBlocks } from "#strapi-blocks-renderer/utils"; export const useBlocksText = (blockNodes) => { const prefix = useRuntimeConfig().public.strapiBlocksRenderer.blocksPrefix; const textNodes = renderBlocks(blockNodes, prefix); return { text: textNodes }; };