Closed issmile closed 8 years ago
Content组件我屏蔽了滚动条,你可以使用自己的 div当做content
<div class="vc-page">
<div class="my-content">
// ....
</div>
</div>
.my-content {
width: 100%;
flex: 1;
overflow: auto;
-webkit-overflow-scrolling: touch;
position: relative;
}
而且也是包含在content 组件内的