uniapp 富文本代码
<template>
<view class="content">
<!-- 使用插件 -->
<parser class="html" :content="content" />
</view>
</template>
<script>
import parser from "@/components/parser";
export default {
components: {
parser,
},
data() {
return {
content: "<p>这是一段富文本内容</p>",
};
},
};
</script>
<!-- 样式 -->
<style>
.content {
padding: 20rpx;
font-size: 28rpx;
line-height: 1.6;
}
</style>
原文地址: https://www.cveoy.top/t/topic/EZJ 著作权归作者所有。请勿转载和采集!