2
0
mirror of https://github.com/tusen-ai/naive-ui.git synced 2025-03-31 14:20:53 +08:00

feat(scrollbar): scrollTo support numbers

This commit is contained in:
07akioni 2020-11-04 00:42:35 +08:00
parent efed314065
commit 22e207c59a

@ -280,8 +280,9 @@ export default {
handleContentResize () {
this.sync()
},
scrollTo (options) {
scrollTo (options, y) {
if (!this.scrollable) return
if (typeof options === 'number') this.scrollToPosition(options, y, 0, false, 'auto')
const {
left,
top,