You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
361 B
30 lines
361 B
2 years ago
|
<style lang="scss">
|
||
|
.content{
|
||
|
width:750rpx;
|
||
|
height:1050rpx;
|
||
|
background:red;
|
||
|
map{
|
||
|
width:750rpx;
|
||
|
height:1050rpx;
|
||
|
}
|
||
|
}
|
||
|
</style>
|
||
|
<template>
|
||
|
<view class="content">
|
||
|
<map enable-satellite style="width:750rpx;height:1050rpx;"/>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|