detail page port

This commit is contained in:
nicwands
2026-05-29 11:22:56 -04:00
parent b85d28c142
commit e22d75c50a
65 changed files with 7006 additions and 4044 deletions

View File

@@ -0,0 +1,17 @@
<template>
<div class="prismic-rich-text" v-html="html" />
</template>
<script setup>
import { computed } from 'vue'
import * as prismicH from '@prismicio/helpers'
const props = defineProps({
field: {
type: Object,
required: true,
},
})
const html = computed(() => prismicH.asHTML(props.field))
</script>