flat: 地图修改

This commit is contained in:
Apcallover
2024-06-11 10:10:29 +08:00
parent 4dce135e0d
commit d19b4d502b
15 changed files with 1564 additions and 42 deletions

View File

@@ -0,0 +1,25 @@
<template>
<view class="item" v-html="item.value">
<!-- {{item.value}} -->
</view>
</template>
<script>
export default {
props: {
item: {
type: Object,
default: () => ({
value: 1
})
}
},
}
</script>
<style lang="scss">
.item {
width: 100%;
margin-bottom: 20rpx;
}
</style>