123456789101112131415161718192021222324252627 |
- <template>
- <view style="flex: 1;">
- <list-view style="flex: 1;">
- <list-item v-for="index in 5" type=1 :name="index">
- <rich-text :nodes="text"></rich-text>
- <text style="height: 150px;">{{ index }}</text>
- </list-item>
- </list-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- text: "<h2>uni-app x,终极跨平台方案</h2>"
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|