首页 > 移动平台 > 详细

uniapp---解析富文本

时间:2021-05-21 18:00:10      阅读:83      评论:0      收藏:0      [点我收藏+]

1.uniapp插件市场下载mp-html。

  链接:https://ext.dcloud.net.cn/plugin?id=805

2.放到components目录下。

技术分享图片

3.页面使用。

<template>
    <view class="content">
        <view class="text-area">
            <text class="title">{{title}}</text>
            <mp-html class="title" :content="title" />
        </view>
    </view>
</template>

<script>
    import mpHtml from @/components/mp-html/mp-html
    export default {
        components: {
            mpHtml
        },
        data() {
            return {
                title: <p>Hello,mp-html!</p>
            }
        }
    }
</script>

<style>
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .title {
        font-size: 36rpx;
        color: #8f8f94;
    }
</style>

技术分享图片

 

uniapp---解析富文本

原文:https://www.cnblogs.com/yundeblog/p/14793577.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!