2025-01-15 18:49:37 +08:00

21 lines
335 B
Vue

<template>
<view class="main">
<image class="img" src="https://eshangtech.com/minTestImg/金融.jpg" />
</view>
</template>
<script>
export default {
data() {
return {};
},
};
</script>
<style scoped lang="less">
.main {
width: 100vw;
.img {
width: 100vw;
height: calc(100vw * (4095 / 1260));
}
}
</style>