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