rich-text-list.uvue 434 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view style="flex: 1;">
  3. <list-view style="flex: 1;">
  4. <list-item v-for="index in 5" type=1 :name="index">
  5. <rich-text :nodes="text"></rich-text>
  6. <text style="height: 150px;">{{ index }}</text>
  7. </list-item>
  8. </list-view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. text: "<h2>uni-app x,终极跨平台方案</h2>"
  16. }
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. </style>