@kdsoft/lit-mvvm-components
Version:
Webcomponents based on @kdsoft-lit-mvvm
23 lines (18 loc) • 377 B
JavaScript
class KdsDropdownConnector {
constructor(getDropdown) {
this.getDropdown = getDropdown;
}
// override this
connectDropdownSlot() {
//
}
// override this
disconnectDropdownSlot() {
//
}
reconnectDropdownSlot() {
this.disconnectDropdownSlot();
this.connectDropdownSlot();
}
}
export default KdsDropdownConnector;