flat: 地图修改
This commit is contained in:
25
components/sylj-selectLocation/xc-list-item.vue
Normal file
25
components/sylj-selectLocation/xc-list-item.vue
Normal 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>
|
||||
Reference in New Issue
Block a user