第一次提交

This commit is contained in:
wangxiaowei
2025-06-11 10:21:51 +08:00
commit 52932d54b1
2341 changed files with 185283 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<template>
<view>
<view class="diy-richText" :style="{background: itemData.style.background, padding: itemData.style.paddingTop + 'px ' + itemData.style.paddingLeft + 'px'}"
v-html="formatContent(itemData.params.content)">
</view>
</view>
</template>
<script>
import utils from '@/common/utils.js';
export default {
data() {
return {
}
},
props:['itemData'],
created(){
},
methods: {
formatContent(e){
return utils.format_content(e);
}
}
}
</script>
<style>
</style>