cwg-html.vue 606 B

12345678910111213141516171819202122232425
  1. <template>
  2. <cwg-match-media :max-width="991">
  3. <mp-html :content="props.richHtml" class="table-wrapper" scroll-table />
  4. </cwg-match-media>
  5. <cwg-match-media :min-width="991">
  6. <view v-html="props.richHtml" class="table-wrapper" />
  7. </cwg-match-media>
  8. </template>
  9. <script setup>
  10. import mpHtml from '@/uni_modules/mp-html/components/mp-html/mp-html.vue'
  11. const props = defineProps({
  12. // 富文本内容
  13. richHtml: {
  14. type: String,
  15. default: ''
  16. },
  17. })
  18. </script>
  19. <style scoped lang="scss">
  20. .table-wrapper :deep(table) {
  21. width: 100% !important;
  22. }
  23. </style>