四零语境前端代码仓库
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
545 B

1 month ago
1 month ago
  1. <template>
  2. <view class="container">
  3. <view class="body">
  4. <rich-text :nodes="htmlContent"></rich-text>
  5. </view>
  6. </view>
  7. </template>
  8. <script >
  9. export default {
  10. data() {
  11. return {
  12. htmlContent: '<h1>这是一个标题</h1><p>这是一个段落</p>'
  13. }
  14. }
  15. }
  16. </script>
  17. <style scoped lang="scss">
  18. .container {
  19. min-height: 100vh;
  20. background-color: #F7F8FA;
  21. overflow: hidden; // 解决margin塌陷问题
  22. .body{
  23. border-radius: 32rpx;
  24. padding: 32rpx;
  25. margin: 40rpx;
  26. background: #fff;
  27. }
  28. }
  29. </style>