我正在使用nativescript-vue
.
我有一个包含在 Scrollview 中的列表(包含在 Tabview 中)。当我的应用程序转到此选项卡时,我希望 Scrollview 向下滚动到包含的列表的特定索引。
我试过这个:
<ScrollView id="ScrollView" @loaded="onLoaded">
<ListView for="item in items" class="list-group">
...
onLoaded() {
this.$refs.page.nativeView.getViewById("ScrollView").scrollToVerticalOffset(200, false);
}
无论 offset 参数的值如何,这都不起作用。
我错过了什么吗?
先感谢您。