File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
src/platforms/weex/runtime/components Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,23 @@ function watchArray (vm: Component, array: Array<any>) {
87
87
88
88
export default {
89
89
name : 'recycle-list' ,
90
+ methods : {
91
+ closest ( ...args : Array < any > ) {
92
+ return this . $el . closest ( ...args )
93
+ } ,
94
+ queryElement ( ...args : Array < any > ) {
95
+ return this . $el . queryElement ( ...args )
96
+ } ,
97
+ queryElementAll ( ...args : Array < any > ) {
98
+ return this . $el . queryElementAll ( ...args )
99
+ } ,
100
+ scrollToElement ( ...args : Array < any > ) {
101
+ return this . $el . scrollToElement ( ...args )
102
+ } ,
103
+ resetLoadmore ( ...args : Array < any > ) {
104
+ return this . $el . resetLoadmore ( ...args )
105
+ }
106
+ } ,
90
107
render ( h : Function ) {
91
108
if ( this . _vnode && this . $options [ '[[UseCache]]' ] ) {
92
109
def ( this . $options , '[[UseCache]]' , false )
You can’t perform that action at this time.
0 commit comments