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

38 lines
696 B

1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
  1. <template>
  2. <view class="container">
  3. <view class="sub-container">
  4. <view class="rich-text">
  5. <uv-parse :content="this.configParamContent('production_desc')"></uv-parse>
  6. </view>
  7. </view>
  8. </view>
  9. </template>
  10. <script >
  11. export default {
  12. data() {
  13. return {
  14. htmlContent: '<h1>这是一个标题</h1><p>这是一个段落</p>'
  15. }
  16. }
  17. }
  18. </script>
  19. <style scoped lang="scss">
  20. .container {
  21. box-sizing: border-box;
  22. height: 100vh;
  23. margin: 0;
  24. padding: 0;
  25. background-color: #F7F8FA;
  26. overflow: hidden;
  27. .sub-container{
  28. box-sizing: border-box;
  29. border-radius: 32rpx;
  30. padding: 32rpx;
  31. margin: 40rpx;
  32. background: #fff;
  33. }
  34. }
  35. </style>