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
- Host: GitHub
- URL: https://github.com/allnulled/v-focus
- Owner: allnulled
- License: other
- Created: 2025-01-27T15:18:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-04T11:20:37.000Z (over 1 year ago)
- Last Synced: 2025-02-04T12:25:49.555Z (over 1 year ago)
- Language: JavaScript
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# v-focus
Self-focus directive for vue@2.
## Snippet
```js
Vue.directive("focus", {
inserted: function(el) {
el.focus();
}
});
```