1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- export default {
- props: {
-
- icon: {
- type: String,
- default: uni.$u.props.empty.icon
- },
-
- text: {
- type: String,
- default: uni.$u.props.empty.text
- },
-
- textColor: {
- type: String,
- default: uni.$u.props.empty.textColor
- },
-
- textSize: {
- type: [String, Number],
- default: uni.$u.props.empty.textSize
- },
-
- iconColor: {
- type: String,
- default: uni.$u.props.empty.iconColor
- },
-
- iconSize: {
- type: [String, Number],
- default: uni.$u.props.empty.iconSize
- },
-
- mode: {
- type: String,
- default: uni.$u.props.empty.mode
- },
-
- width: {
- type: [String, Number],
- default: uni.$u.props.empty.width
- },
-
- height: {
- type: [String, Number],
- default: uni.$u.props.empty.height
- },
-
- show: {
- type: Boolean,
- default: uni.$u.props.empty.show
- },
-
- marginTop: {
- type: [String, Number],
- default: uni.$u.props.empty.marginTop
- }
- }
- }
|