Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simplesmiler/vue-focus
A reusable focus directive for reusable Vue.js components
https://github.com/simplesmiler/vue-focus
vue
Last synced: 1 day ago
JSON representation
A reusable focus directive for reusable Vue.js components
- Host: GitHub
- URL: https://github.com/simplesmiler/vue-focus
- Owner: simplesmiler
- License: mit
- Created: 2015-12-20T03:20:11.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-04-18T05:27:35.000Z (almost 4 years ago)
- Last Synced: 2025-02-05T13:07:22.951Z (9 days ago)
- Topics: vue
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 403
- Watchers: 12
- Forks: 40
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-vue-cn - vue-focus ★31 - friendly way. By @simplesmiler (Awesome Vue.js [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) / Libraries & Plugins)
- awesome-vue - vue-focus - focus?style=social) - 可重用VueJS组件的焦点指令 (实用库)
- awesome-github-vue - vue-focus - 可重用VueJS组件的焦点指令 (实用库)
- awesome-github-vue - vue-focus - 可重用VueJS组件的焦点指令 (实用库)
- awesome - vue-focus - 可重用VueJS组件的焦点指令 (实用库)
README
# vue-focus
> A reusable focus directive for reusable [Vue.js](https://github.com/vuejs/vue) components
[![npm version](https://img.shields.io/npm/v/vue-focus.svg)](https://www.npmjs.com/package/vue-focus)
## Overview
It can be tricky to manage input focus. You always have to fall back to accessing DOM elements and calling `.focus` or `.blur` on them.
Well not anymore. `vue-focus` lets you manage focus from the safety of your view model.
[Check out the examples](https://jsfiddle.net/simplesmiler/zak1t6o8/), [read the docs](#api) or [file an issue](https://github.com/simplesmiler/vue-focus/issues).
## Use cases
- Focus the field when the modal windows appears
- Track the focus to show a hint for the focused field
- Move between fields with cursor keys
- Implement custom focus-related controls (e.g labels)## Requirements
- vue: ^2.0.0
If you need a version for Vue 1, try `[email protected]`.
## Install
From npm:
``` sh
$ npm install vue-focus --save
```From CDN:
``` html
```
## API
### `focus`
A directive that binds focus to the expression in a one-way manner, so that the element receives focus when the expression is `truthy` and loses focus when the expression is `falsy`.
``` js
import { focus } from 'vue-focus';export default {
directives: { focus: focus },
template: '',
data: function() {
return {
focused: false,
};
},
};
```> NOTE: As opposed to 1.x, in Vue 2.0, directives are updated every time the host component rerenders, not just when the directive expression chages. Somethimes this may be undesirable, especially for the "autofocus" use case. If you want to mimic the 1.x behavior, then add the `.lazy` modifier to the directive, e.g. `v-focus.lazy="true"`.
### `mixin`
A mixin that makes the `v-focus` directive available to the component under the default name.
``` js
import { mixin as focusMixin } from 'vue-focus';export default {
mixins: [ focusMixin ],
template: '',
data: function() {
return {
focused: false,
};
},
};
```## Caveats
1. Although you can write an input that gains focus immediately after loosing it, this is not recommended, as two such inputs will fall into infinite recursion and freeze the browser.
## Notes
Form elements are not the only elements that are able to receive focus. The list also includes links, elements with `tabindex` attribute set and elements with `contentEditable` set to `true`.
## License
[MIT](https://opensource.org/licenses/MIT)