openflexure-microscope-server/src/components/fieldComponents/htmlBlock.vue
2019-11-11 16:33:43 +00:00

28 lines
353 B
Vue

<template>
<div>
<p v-html="content"></p>
</div>
</template>
<script>
export default {
name: "HtmlBlock",
props: {
label: {
type: String,
required: true
},
name: {
type: String,
required: true
},
content: {
type: String,
required: true
}
}
};
</script>
<style scoped></style>