Detailed explanation of Vue custom instructions

Detailed explanation of Vue custom instructions

Vue custom directive

Custom directives

Register a global directive v-focus, which is used to focus the element when the page is loaded

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<script src="../js/vue.js"></script>
	</head>
	<body>
		<div id="app">
			<input v-fo>
		</div>
		<script>
            // Register custom directive Vue.directive('fo',{
				inserted:function(el){
                    // Focus element el.focus()
				}
			})
			new Vue({
				el: '#app'
			})
		</script>
	</body>
</html>
 

image-20211112151122161

Open the interface and place the cursor directly in the input box

Hook function

The directive definition function provides several hook functions (optional).

  • bind : Called only once, when the directive is first bound to an element. This hook function can be used to define an initialization action that is executed once during binding.
  • inserted : Called when the bound element is inserted into the parent node (it can be called if the parent node exists, not necessarily in the document).
  • update : Called when the template where the bound element is located is updated, regardless of whether the bound value changes. By comparing binding values ​​before and after the update, unnecessary template updates can be ignored.
  • componentUpdated : Called when the template of the bound element completes an update cycle.
  • unbind : Called only once, when the directive is unbound from the element.

The parameters of the hook function mainly include the following

  • el : The element to which the instruction is bound, which can be used to directly manipulate the DOM.
  • binding : an object containing the following properties
  • name : The name of the directive, without the v- prefix.
  • value : The binding value of the directive, for example, v-my-directive="1+1", the value is 2.
  • oldValue : The previous value bound to the directive, only available in update and componentUpdated hooks, regardless of whether the value has changed.
  • expression : The expression or variable name of the binding value, for example, v-my-directive="1+1", the value of expression is "1+1".
  • arg : The parameter passed to the directive, for example, v-my-directive:foo, the value of arg is "foo".
  • modifiers : An object containing modifiers, for example v-my-directive.foo.bar , the value of the modifier object modifiers is {foo: true, bar: true} .
  • vnode : The virtual node generated by Vue compilation.
  • oldVnode : The previous virtual node, only available in update and componentUpdated hooks.

Output related attributes

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<script src="../js/vue.js"></script>
	</head>
	<body>
		<div id="app" v-hh:abc="mess">
		</div>
		<script>
			Vue.directive('hh',{
				bind: function(el,binding,vnode){
					var s = JSON.stringify
					el.innerHTML = 'name:'+s(binding.name)+'<br>'+
					'value:'+s(binding.value)+'<br>'+
					'expression:'+s(binding.expression)+'<br>'+
					'argument:'+s(binding.arg)+'<br>'+
					'modifiers:'+s(binding.modifiers)+'<br>'+
					'vnode keys:'+Object.keys(vnode).join(',')
				}
			})
			new Vue({
				el:'#app',
				data:{
					mess:'abc'
				}
			})
		</script>
	</body>
</html>
 

image-20211112163153199

Application Examples

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<script src="../js/vue.js"></script>
	</head>
	<body>
		<div id="app">
			<div v-hh="{text:'123',c:'blue'}"></div>
		</div>
		<script>
			Vue.directive('hh',function(el,binding){
				el.innerHTML=binding.value.text
				el.style.color=binding.value.c
			})
			new Vue({
				el:'#app'
			})
		</script>
	</body>
</html>
 

image-20211112164831459

Summarize

This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Use of vue global custom instructions and local custom instructions
  • Detailed code about Vue custom instructions to implement element dragging
  • How to write a custom directive for Vue3
  • Explanation and example usage of 4 custom instructions in Vue
  • vue3 custom directive details
  • Description of vue custom directives and their common hook functions

<<:  Analyze Tomcat architecture principles to architecture design

>>:  CSS to achieve compatible text alignment in different browsers

Recommend

How to make ApacheBench support multi-url

Since the standard ab only supports stress testin...

Detailed explanation of .bash_profile file in Linux system

Table of contents 1. Environment variable $PATH: ...

WeChat applet implements a simple dice game

This article shares the specific code of the WeCh...

Web Design Tutorial (2): On Imitation and Plagiarism

<br />In the previous article, I introduced ...

How to install MySQL Community Server 5.6.39

This article records the detailed tutorial of MyS...

MySQL 5.7.16 ZIP package installation and configuration tutorial

This article shares the installation and configur...

Understanding render in Vue scaffolding

In the vue scaffolding, we can see that in the ne...

A small collection of html Meta tags

<Head>……</head> indicates the file he...

Practical Optimization of MySQL Paging Limit

Preface When we use query statements, we often ne...

MySQL 5.7.15 version installation and configuration method graphic tutorial

This article shares with you a detailed tutorial ...

WeChat Mini Program to Implement Electronic Signature

This article shares the specific code for impleme...

MySQL Installer Community 5.7.16 installation detailed tutorial

This article records the detailed tutorial of MyS...

Linux implements automatic and scheduled backup of MySQL database every day

Overview Backup is the basis of disaster recovery...