File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " scriptis" ,
3
- "version" : " 0.7.1 " ,
3
+ "version" : " 0.7.2 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"serve" : " vue-cli-service serve" ,
Original file line number Diff line number Diff line change 2
2
<div
3
3
class =" list-view"
4
4
ref =" list" >
5
- <vue-scroll
5
+ <vuescroll
6
6
:ops =" ops"
7
7
@handle-scroll =" handleScroll" >
8
8
<list-body
24
24
</div >
25
25
</div >
26
26
</list-body >
27
- </vue-scroll >
27
+ </vuescroll >
28
28
</div >
29
29
</template >
30
30
<script >
31
31
import listBody from ' ./body.vue' ;
32
- import vueScroll from ' ./ vuescroll/vuescroll-native.js ' ;
32
+ import vuescroll from ' vuescroll/dist/ vuescroll-native' ;
33
33
export default {
34
34
components: {
35
- vueScroll ,
35
+ vuescroll ,
36
36
listBody,
37
37
},
38
38
props: {
@@ -77,7 +77,7 @@ export default {
77
77
},
78
78
methods: {
79
79
handleScroll (v , h ) {
80
- this .$emit (' on-scroll' , {v, h});
80
+ this .$emit (' on-scroll' , { v, h });
81
81
this .$refs .body .handleScroll (v, h);
82
82
},
83
83
columnItemClick (index ) {
@@ -86,4 +86,4 @@ export default {
86
86
},
87
87
},
88
88
};
89
- </script >
89
+ </script >
You can’t perform that action at this time.
0 commit comments