import Base from './base'
|
class Custom extends Base {
|
constructor (attr) {
|
super(attr)
|
this.img = attr.img || ''
|
this.link = attr.link || ''
|
this.fixedPosition = attr.fixedPosition || false
|
this.closeBtn = attr.closeBtn || false
|
}
|
}
|
export default Custom
|