26 lines
410 B
Vue
26 lines
410 B
Vue
<template>
|
|
<view class="imageTop">
|
|
<image :src="url" mode="aspectFit"></image>
|
|
</view>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
.imageTop{
|
|
width: 100%;
|
|
height: 500rpx;
|
|
margin-bottom: 20rpx;
|
|
>image{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
name:"imageTop",
|
|
data(){
|
|
return {
|
|
}
|
|
},
|
|
props:['url']
|
|
}
|
|
</script> |