29 lines
529 B
Vue
29 lines
529 B
Vue
<template>
|
|
<div
|
|
v-html="processedContent"
|
|
/>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
content: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
mentionsAllowed: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
form: {
|
|
type: Object,
|
|
default: null
|
|
},
|
|
formData: {
|
|
type: Object,
|
|
default: null
|
|
}
|
|
})
|
|
const processedContent = computed(() => {
|
|
return useParseMention(props.content, props.mentionsAllowed, props.form, props.formData)
|
|
})
|
|
</script> |