Files
lucky_shop/components/ns-mp-html/ns-mp-html.vue

25 lines
333 B
Vue

<template>
<view class="mp-html">
<mp-html :content="content"></mp-html>
</view>
</template>
<script>
export default {
props: {
content: {
type: String,
default: '',
}
},
}
</script>
<style lang="scss">
.mp-html{
::v-deep img{
width:100% !important;
display:block;
}
}
</style>