Skip to content
This repository was archived by the owner on Aug 18, 2023. It is now read-only.

Simple example for Nuxt 3 open link in new window #34

Open
MetaBureau opened this issue Jun 11, 2022 · 1 comment
Open

Simple example for Nuxt 3 open link in new window #34

MetaBureau opened this issue Jun 11, 2022 · 1 comment

Comments

@MetaBureau
Copy link

MetaBureau commented Jun 11, 2022

Reading here (https://sanity.nuxtjs.org/helpers/portable-text) I see:

marks: {
    // You can also just pass a string for a custom serializer if it's an HTML element
    internalLink: 'a'
  }

Is anyone able to provide a simple example of opening links in a new window for Nuxt 3 please?
I'm imagining something like:

marks: {
    // You can also just pass a string for a custom serializer if it's an HTML element
    link: 'a', target:_blank'
  } 
@joserocha3
Copy link

joserocha3 commented Sep 11, 2022

@MetaBureau you probably figured this out by now, but in case someone else needs it this is how it is done:

Custom Block component with serializers:

<script setup>
import Link from '~/components/blocks/link.vue'

const props = defineProps({
  blocks: Array,
})

const serializers = {
  marks: {
    link: Link,
  },
}
</script>

<template>
    <SanityContent :blocks="blocks" :serializers="serializers" />
</template>

Here is ~/components/blocks/link.vue:

<template>
  <NuxtLink target="_blank">
    <slot />
  </NuxtLink>
</template>

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants