Files
eruda/src/DevTools/Tool.js
2020-11-21 20:35:38 +08:00

21 lines
252 B
JavaScript

import { Class } from '../lib/util'
export default Class({
init($el) {
this._$el = $el
},
show() {
this._$el.show()
return this
},
hide() {
this._$el.hide()
return this
},
destroy() {
this._$el.remove()
},
})