chore(components): 只增加组件

This commit is contained in:
2025-12-20 15:51:44 +08:00
parent 53a71d7afd
commit 72b2087204
9 changed files with 5519 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<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{
/deep/ img{
width:100% !important;
display:block;
}
}
</style>