<template>
<view class="content">
<text class="text">{{title}}</text><text class="text">{{title}}</text>
<rich-text :nodes="title"></rich-text>
</view>
</template>
<script>
export default {
data() {
return {
title: '<div style="color:#000;" > Hello </div> '
}
},
onLoad() {
},
methods: {
}
}
</script>
<style>
.text {
font-size: 26rpx;
color: #8f8f94;
}
</style>