46 lines
595 B
JavaScript
46 lines
595 B
JavaScript
export default {
|
|
props: {
|
|
img: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
text: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
show: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
position: {
|
|
type: String,
|
|
default: 'fixed'
|
|
},
|
|
background: {
|
|
type: String,
|
|
default: '#FFFFFF'
|
|
},
|
|
width: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
height: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
type: {
|
|
type: String,
|
|
default: 'load'
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: '#FFFFFF'
|
|
},
|
|
zIndex: {
|
|
type:[Number,String],
|
|
default:10
|
|
}
|
|
}
|
|
|
|
}
|