An open API service indexing awesome lists of open source software.

https://github.com/allnulled/v-focus

Self-focus on inserted for vue@2
https://github.com/allnulled/v-focus

Last synced: about 1 year ago
JSON representation

Self-focus on inserted for vue@2

Awesome Lists containing this project

README

          

# v-focus

Self-focus directive for vue@2.

## Snippet

```js
Vue.directive("focus", {
inserted: function(el) {
el.focus();
}
});
```