12345678910111213141516 |
- <template>
- <view v-html="activityIntroduction" style="padding: 30upx;" class="activityIntroduction"></view>
- </template>
- <script>
- export default {
- name: "cooperationActiveReview",
- props: ['activityIntroduction']
- }
- </script>
- <style>
- .activityIntroduction /deep/ img {
- max-width: 700upx !important;
- }
- </style>
|