uni-appuin-appuni-app交流圈

uniapp之富文本rich-text的使用

2019-08-22  本文已影响2人  瑟闻风倾
<template>
    <view>
        <rich-text :nodes="nodes" bindtap="tap"></rich-text>
    </view>
</template>

<script>
export default {
    data() {
        return {
            nodes: [
                {
                    name: 'div',
                    attrs: {
                        class: 'div_class',
                        style: 'line-height: 60px; color: red;'
                    },
                    children: [
                        {
                            type: 'text',
                            text: 'Hello&nbsp;World!'
                        },
                        {
                            name:"img",
                            attrs: {
                                style: 'width: 100px;',
                                src:'http://photocdn.sohu.com/20120910/Img352705474.jpg'
                            },
                        }
                    ]
                },
            ]
        }
    },
    methods: {
        tap() { 
             console.log('tap')
        }
    }
}
</script>

<style>

</style>

备注:img 标签仅支持网络图片。

富文本.png
上一篇下一篇

猜你喜欢

热点阅读