123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- export default {
- props: {
-
- mode: {
- type: String,
- default: uni.$u.props.backtop.mode
- },
-
- icon: {
- type: String,
- default: uni.$u.props.backtop.icon
- },
-
- text: {
- type: String,
- default: uni.$u.props.backtop.text
- },
-
- duration: {
- type: [String, Number],
- default: uni.$u.props.backtop.duration
- },
-
- scrollTop: {
- type: [String, Number],
- default: uni.$u.props.backtop.scrollTop
- },
-
- top: {
- type: [String, Number],
- default: uni.$u.props.backtop.top
- },
-
- bottom: {
- type: [String, Number],
- default: uni.$u.props.backtop.bottom
- },
-
- right: {
- type: [String, Number],
- default: uni.$u.props.backtop.right
- },
-
- zIndex: {
- type: [String, Number],
- default: uni.$u.props.backtop.zIndex
- },
-
- iconStyle: {
- type: Object,
- default: uni.$u.props.backtop.iconStyle
- }
- }
- }
|