42 lines
514 B
JavaScript
42 lines
514 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'
|
|
}
|
|
}
|
|
|
|
}
|