123456789101112131415161718192021222324252627282930 |
- export default {
- async: {
- type: Number,
- default: 100
- },
- src: {
- type: String,
- default: ''
- },
- mode: {
- type: String,
- default: 'aspectFill'
- },
- lazyLoad: {
- type: Boolean,
- default: true
- },
- showMenuByLongpress: {
- type: Boolean,
- default: false
- },
- successBackgroundColor: {
- type: String,
- default: 'transparent'
- },
- backgroundColor: {
- type: String,
- default: "#f2f2f2"
- }
- }
|