123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- export default {
- props: {
-
- src: {
- type: String,
- default: uni.$u.props.image.src
- },
-
- mode: {
- type: String,
- default: uni.$u.props.image.mode
- },
-
- width: {
- type: [String, Number],
- default: uni.$u.props.image.width
- },
-
- height: {
- type: [String, Number],
- default: uni.$u.props.image.height
- },
-
- shape: {
- type: String,
- default: uni.$u.props.image.shape
- },
-
- radius: {
- type: [String, Number],
- default: uni.$u.props.image.radius
- },
-
- lazyLoad: {
- type: Boolean,
- default: uni.$u.props.image.lazyLoad
- },
-
- showMenuByLongpress: {
- type: Boolean,
- default: uni.$u.props.image.showMenuByLongpress
- },
-
- loadingIcon: {
- type: String,
- default: uni.$u.props.image.loadingIcon
- },
-
- errorIcon: {
- type: String,
- default: uni.$u.props.image.errorIcon
- },
-
- showLoading: {
- type: Boolean,
- default: uni.$u.props.image.showLoading
- },
-
- showError: {
- type: Boolean,
- default: uni.$u.props.image.showError
- },
-
- fade: {
- type: Boolean,
- default: uni.$u.props.image.fade
- },
-
- webp: {
- type: Boolean,
- default: uni.$u.props.image.webp
- },
-
- duration: {
- type: [String, Number],
- default: uni.$u.props.image.duration
- },
-
- bgColor: {
- type: String,
- default: uni.$u.props.image.bgColor
- }
- }
- }
|