123456789101112131415161718192021222324252627282930313233 |
- <template>
- <view class="model-2">
- <view class="editor-wrapper" :style="{backgroundColor:editablePageConfig.editable_page_config_content.back_color}">
- <rich-text class="html" :nodes="editablePageConfig.editable_page_config_content.editor_content"></rich-text>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'Model2',
- data () {
- return {
- }
- },
- props: ['editablePageConfig','editablePage'],
- computed: {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .model-2 .editor-wrapper{
- border-radius: 5px;
- }
- .model-2 .editor-wrapper .html *{
- max-width: 100%;
- }
- </style>
|