username@email.com
2024-09-09 626943b5ba84ce44bc19f4c3b8e8e94638bec733
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
    <view class="textarea coreshop-margin-10 coreshop-padding-10">
        <coreshopContent :content="coreshopData.parameters.value" v-if="coreshopData.parameters.value"></coreshopContent>
    </view>
</template>
 
<script>
    import coreshopContent from '@/components/coreshop-page/coreshop-content.vue'//视频和文本解析组件
    export default {
        components: {
            coreshopContent
        },
        name: "coreshopTextArea",
        props: {
            coreshopData: {
                // type: Object,
                required: true,
            }
        }
    }
</script>
 
<style lang="scss" scoped>
    .textarea { background-color: #fff;
        p {
            img { width: 100% !important; background-color: #000; }
        }
        div { background-color: #000; }
    }
    .clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
</style>