如何使用 传递文本中具有粗体效果的标签来自vue应用程序的data()?
我正在尝试将文本从 vuetify 项目中的 data() 传递到 v-textarea 。文本区域内的文本与我不想要的粗体标签一起出现,但我希望文本采用粗体格式。 但文本区域之外的文本是粗体的。
<template>
<div>
<v-textarea v-model="value"></v-textarea>
<p v-html="value"></p>
</div>
</template>
</div>
</template>
<script>
export default {
data() {
return {
value: "<b>This is the value</b>",
};
},
};
</script>
I am trying to pass text to v-textarea from data() in a vuetify project. The text inside the textarea appeears along with the bold tags which i dont want but instead i want the text to be in bold format.
But the text outside textarea is in bold.
<template>
<div>
<v-textarea v-model="value"></v-textarea>
<p v-html="value"></p>
</div>
</template>
</div>
</template>
<script>
export default {
data() {
return {
value: "<b>This is the value</b>",
};
},
};
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需移动 从数据值直接到模板
,然后用css配置textarea为粗体
just move <b> from data value direct to the template
and then configure textarea with css to be bold