- Impara
-
Ecosistema
Aiuto
Tooling
Librerie Core
Novità
Risorse
- Team
- Supporta Vue
- Traduzioni
Guide
Essenziale
- Installation
- Introduction
- The Vue Instance
- Template Syntax
- Computed Properties and Watchers
- Class and Style Bindings
- Conditional Rendering
- List Rendering
- Event Handling
- Form Input Bindings
- Components
Animazioni e transizioni
- Enter/Leave & List Transitions
- State Transitions
Riusabilità e Composizione
- Mixins
- Custom Directives
- Render Functions & JSX
- Plugins
- Filters
Tooling
- Production Deployment
- Single File Components
- Unit Testing
- TypeScript Support
Scaling Up
- Routing
- State Management
- Server-Side Rendering
Internals
- Reactivity in Depth
Migrazioni
- Migration from Vue 1.x
- Migration from Vue Router 0.7.x
- Migration from Vuex 0.6.x to 1.0
Meta
- Comparison with Other Frameworks
- Join the Vue.js Community!
- Meet the Team
Custom Directives
Intro
In addition to the default set of directives shipped in core (v-model
and v-show
), Vue also allows you to register your own custom directives. Note that in Vue 2.0, the primary form of code reuse and abstraction is components - however there may be cases where you need some low-level DOM access on plain elements, and this is where custom directives would still be useful. An example would be focusing on an input element, like this one:
When the page loads, that element gains focus (note: autofocus
doesn’t work on mobile Safari). In fact, if you haven’t clicked on anything else since visiting this page, the input above should be focused now. Now let’s build the directive that accomplishes this:
// Register a global custom directive called `v-focus` |
If you want to register a directive locally instead, components also accept a directives
option:
directives: { |
Then in a template, you can use the new v-focus
attribute on any element, like this:
<input v-focus> |
Hook Functions
A directive definition object can provide several hook functions (all optional):
bind
: called only once, when the directive is first bound to the element. This is where you can do one-time setup work.inserted
: called when the bound element has been inserted into its parent node (this only guarantees parent node presence, not necessarily in-document).update
: called after the containing component’s VNode has updated, but possibly before its children have updated. The directive’s value may or may not have changed, but you can skip unnecessary updates by comparing the binding’s current and old values (see below on hook arguments).componentUpdated
: called after the containing component’s VNode and the VNodes of its children have updated.unbind
: called only once, when the directive is unbound from the element.
We’ll explore the arguments passed into these hooks (i.e. el
, binding
, vnode
, and oldVnode
) in the next section.
Directive Hook Arguments
Directive hooks are passed these arguments:
el
: The element the directive is bound to. This can be used to directly manipulate the DOM.binding
: An object containing the following properties.name
: The name of the directive, without thev-
prefix.value
: The value passed to the directive. For example inv-my-directive="1 + 1"
, the value would be2
.oldValue
: The previous value, only available inupdate
andcomponentUpdated
. It is available whether or not the value has changed.expression
: The expression of the binding as a string. For example inv-my-directive="1 + 1"
, the expression would be"1 + 1"
.arg
: The argument passed to the directive, if any. For example inv-my-directive:foo
, the arg would be"foo"
.modifiers
: An object containing modifiers, if any. For example inv-my-directive.foo.bar
, the modifiers object would be{ foo: true, bar: true }
.
vnode
: The virtual node produced by Vue’s compiler. See the VNode API for full details.oldVnode
: The previous virtual node, only available in theupdate
andcomponentUpdated
hooks.
Apart from el
, you should treat these arguments as read-only and never modify them. If you need to share information across hooks, it is recommended to do so through element’s dataset.
An example of a custom directive using some of these properties:
<div id="hook-arguments-example" v-demo:foo.a.b="message"></div> |
Vue.directive('demo', { |
Function Shorthand
In many cases, you may want the same behavior on bind
and update
, but don’t care about the other hooks. For example:
Vue.directive('color-swatch', function (el, binding) { |
Object Literals
If your directive needs multiple values, you can also pass in a JavaScript object literal. Remember, directives can take any valid JavaScript expression.
<div v-demo="{ color: 'white', text: 'hello!' }"></div> |
Vue.directive('demo', function (el, binding) { |