mirror of
https://github.com/koel/koel
synced 2024-12-22 02:23:14 +00:00
15 lines
241 B
JavaScript
15 lines
241 B
JavaScript
|
/**
|
||
|
* A simple directive to set focus into an input field when it's shown.
|
||
|
*/
|
||
|
export default function (value) {
|
||
|
if (!value) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
var el = this.el;
|
||
|
|
||
|
Vue.nextTick(() => {
|
||
|
el.focus();
|
||
|
});
|
||
|
}
|