12345678910111213141516171819202122232425262728 |
- <!-- -->
- <template>
- <div class="detailsBox">
- <span v-if="props.content.indexOf('style')" v-html="props.content"></span>
- </div>
- </template>
- <script setup>
- defineOptions({name: 'goods-details-describe'})
- const props = defineProps({
- content: {
- type: String,
- default: '',
- },
- });
- // console.log('content:', props.content)
- </script>
- <style lang="scss" scoped>
- .detailsBox {
- width: 100%;
- }
- :deep(img) {
- max-width: 100%;
- }
- :deep(ol) {
- margin: 0 20px;
- }
- </style>
|