我想在new Vue({
el: '#app',
methods: {
test() {
console.log("Come on");
}
},
mounted() {
this.$el.focus();
}
});
中创建一个循环,所以如果我们有三张幻灯片,用户可以滚动如下内容:
<script src="https://unpkg.com/vue@latest/dist/vue.js"></script>
<div id="app" @keyup.esc="test" tabindex="0">
Here is my div
</div>
请注意,FlatList
是双向的,因此用户可以像这样滚动:
...
1
2
3
1
2
3
...
我尝试使用:
FlatList
但这不是很平滑,也不是双向的!
有什么主意吗?