<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 World!'
},
{
name:"img",
attrs: {
style: 'width: 100px;',
src:'http://photocdn.sohu.com/20120910/Img352705474.jpg'
},
}
]
},
]
}
},
methods: {
tap() {
console.log('tap')
}
}
}
</script>
<style>
</style>
备注
:img 标签仅支持网络图片。
网友评论