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.
29 lines
291 B
29 lines
291 B
<template>
|
|
<view class="box">
|
|
<image class="img" src="" mode=""></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.box{
|
|
display: flex;
|
|
flex: 1;
|
|
}
|
|
.img{
|
|
width: 750rpx;
|
|
height: 1200rpx;
|
|
}
|
|
</style>
|
|
|