salix/client/core/src/lib/input.js

14 lines
226 B
JavaScript
Raw Normal View History

2017-11-16 13:30:17 +00:00
import Component from './component';
/**
* Component that host an input.
*/
export default class Input extends Component {
select() {
this.input.select();
}
focus() {
this.input.focus();
}
}