e-text.vue 526 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view>
  3. <view class="textVo">
  4. <view class="title">{{textVo.title}}</view>
  5. <view class="text">
  6. <view v-html="textVo.dataContent"></view>
  7. </view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. props:[
  14. "textVo"
  15. ],
  16. data() {
  17. return {
  18. };
  19. }
  20. }
  21. </script>
  22. <style lang="scss">
  23. .textVo{
  24. .title{
  25. line-height: 30px;
  26. border-left: 4px solid #009FE8;
  27. border-radius: 4px;
  28. padding-left: 10px;
  29. margin-bottom: 10px;
  30. }
  31. .text{
  32. text-indent: 2rem;
  33. }
  34. }
  35. </style>