垂直滚动布局(vScroll)

垂直滚动布局

垂直滚动布局(vScroll),当子控件高度超过容器高度时,可以上下滑动查看剩余控件。注意子控件只能有一个,不能超过一个。
<template> <vScroll> <linear orientation="vertical" width="matchParent"> <text text="控件1" height="600"/> <button text="确认1" height="600"/> <text text="控件2"/> <button text="确认2"/> </linear> </vScroll> </template>