
<template>
<view class="content">
<scroll-view scroll-y="true" class="left">
<view style="background-color: red;height: 1000px;"></view>
</scroll-view>
<view class="right">
<scroll-view scroll-y="true" class="left">
<view style="background-color: yellow;height: 3000px;"></view>
</scroll-view>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
},
methods: {}
};
</script>
<style>
page {
display: flex;
}
.content {
border: 1px solid red;
flex: 1;
display: flex;
flex-direction: row;
}
.left {
border: 1px solid red;
flex: 1;
}
.right {
border: 1px solid red;
flex: 2;
}
</style>