四零语境前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 lines
497 B

<template>
<view class="container">
<view class="body">
<rich-text :nodes="htmlContent"></rich-text>
</view>
</view>
</template>
<script >
export default {
data() {
return {
htmlContent: '<h1>这是一个标题</h1><p>这是一个段落</p>'
}
}
}
</script>
<style scoped lang="scss">
.container {
min-height: 100vh;
background-color: #F7F8FA;
.body{
border-radius: 32rpx;
padding: 32rpx;
margin: 40rpx;
background: #fff;
}
}
</style>