waibu-bootstrap
Version:
Bootstrap suport for Waibu Framework
13 lines (11 loc) • 417 B
JavaScript
async function a () {
return class A extends this.app.baseClass.MpaWidget {
constructor (options) {
super(options)
this.component.normalizeAttr(this.params, { tag: 'a' })
if (!this.params.attr.href) this.params.attr.href = '#'
if (this.params.html.includes('<i class="') && !this.params.attr.noIconLink) this.params.attr.class.push('icon-link')
}
}
}
export default a