美文网首页uni-appuin-appuni-app交流圈
uniapp之富文本rich-text的使用

uniapp之富文本rich-text的使用

作者: 瑟闻风倾 | 来源:发表于2019-08-22 12:58 被阅读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

    相关文章

      网友评论

        本文标题:uniapp之富文本rich-text的使用

        本文链接:https://www.haomeiwen.com/subject/vclnsctx.html