18 lines
No EOL
208 B
Vue
18 lines
No EOL
208 B
Vue
<template>
|
|
<div>
|
|
<p v-html="content"></p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'textInput',
|
|
props: [
|
|
'label',
|
|
'name',
|
|
'content'
|
|
]
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style> |