12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- export default {
- props: {
-
- showScrollbar: {
- type: Boolean,
- default: uni.$u.props.list.showScrollbar
- },
-
- lowerThreshold: {
- type: [String, Number],
- default: uni.$u.props.list.lowerThreshold
- },
-
- upperThreshold: {
- type: [String, Number],
- default: uni.$u.props.list.upperThreshold
- },
-
- scrollTop: {
- type: [String, Number],
- default: uni.$u.props.list.scrollTop
- },
-
- offsetAccuracy: {
- type: [String, Number],
- default: uni.$u.props.list.offsetAccuracy
- },
-
- enableFlex: {
- type: Boolean,
- default: uni.$u.props.list.enableFlex
- },
-
- pagingEnabled: {
- type: Boolean,
- default: uni.$u.props.list.pagingEnabled
- },
-
- scrollable: {
- type: Boolean,
- default: uni.$u.props.list.scrollable
- },
-
- scrollIntoView: {
- type: String,
- default: uni.$u.props.list.scrollIntoView
- },
-
- scrollWithAnimation: {
- type: Boolean,
- default: uni.$u.props.list.scrollWithAnimation
- },
-
- enableBackToTop: {
- type: Boolean,
- default: uni.$u.props.list.enableBackToTop
- },
-
- height: {
- type: [String, Number],
- default: uni.$u.props.list.height
- },
-
- width: {
- type: [String, Number],
- default: uni.$u.props.list.width
- },
-
- preLoadScreen: {
- type: [String, Number],
- default: uni.$u.props.list.preLoadScreen
- }
-
- }
- }
|