
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
A reusable focus directive for reusable Vue.js components
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, read the docs or file an issue.
From npm:
$ npm install vue-focus@^1.0 --save
From CDN:
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/1.0.0/vue-focus.js"></script>
<!-- OR -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/1.0.0/vue-focus.min.js"></script>
focus
A directive that binds focus to the expression in a one-way manner, so that the element recieves focus when the expression becomes truthy
and loses focus when the expression becomes falsy
.
import { focus } from 'vue-focus';
export default {
directives: { focus: focus },
template: '<input type="text" v-focus="focused" @focus="focused = true" @blur="focused = false">',
data: function() {
return {
focused: false,
};
},
};
focus-model
NOTE: this directive is deprecated. Use
v-focus="expression" @focus="expression = true" @blur="expression = false"
instead.
A directive that binds focus to the expression in a two-way manner, so that the element recieves focus when you change the bound value to true
and loses focus when you change the bound value to false
, and vice versa, sets the bound value to true
when element recieves focus and sets the bound value to false
when element loses focus. It takes a single argument: an expression to be bound.
NOTE: This is a two-way bound directive. If you need a one-way bound version, please refer to focus.
NOTE: The expression has to be settable, and has to evaluate to a boolean value.
import { focusModel } from 'vue-focus';
export default {
directives: { focusModel: focusModel },
template: '<input type="text" v-focus-model="focused">',
data: function() {
return {
focused: false,
};
},
};
focus-auto
NOTE: this directive is deprecated. Use
v-focus="true"
instead.
A directive that makes the element gain focus whenever it enters the DOM (either via initial costruction or by the means of :is
, v-if
or v-for
). It takes no arguments.
NOTE: This is a reactive replacement for the native html attribute
autofocus
, which does not work after page has finished loading.
import { focusAuto } from 'vue-focus';
export default {
directives: { focusAuto: focusAuto },
template: '<input type="text" v-focus-auto>',
};
mixin
A mixin that makes the v-focus
directive available to the component under the default name.
import { mixin as focusMixin } from 'vue-focus';
export default {
mixins: [ focusMixin ],
template: '<input type="text" v-focus="focused" @focus="focused = true" @blur="focused = false">',
data: function() {
return {
focused: false,
};
},
};
vue@1.0
views were able to inherit assets from the parent views, which made it possible to define the directive on the root view and have it available across the whole view hierarchy. Since vue@1.0
this is not possible. If you still want to define the directive application-wide, you should Vue.directive('<directive-name>', <directive>);
in your application entry point for every directive you need. But bear in mind that this introduces implicit dependency for your components, making them less reusable.Form elements are not the only elements that are able to receive focus. The list also includes links, element with tabindex
attribute set and elements with contentEditable
set to true
.
[1.0.0] - 2016-09-22
v-focus-model
and v-focus-auto
are now deprecatedFAQs
A set of reusable focus directives for reusable Vue.js components
The npm package vue-focus receives a total of 6,077 weekly downloads. As such, vue-focus popularity was classified as popular.
We found that vue-focus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.