Skip to content

Instantly share code, notes, and snippets.

View ekrist1's full-sized avatar

ekrist1

View GitHub Profile
@ekrist1
ekrist1 / nuxt-file
Created April 22, 2023 14:54
Sanity serializers to convert a tag to nuxt-link (nuxt 3).
//helpers/link.vue
<template>
<nuxt-link :to="href" v-if="isInternalLink"> <slot /></nuxt-link>
<a :href="href" v-else> <slot /></a>
</template>
<script setup>
const props = defineProps({