Vue custom directiveCustom directivesRegister 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> Open the interface and place the cursor directly in the input box Hook functionThe directive definition function provides several hook functions (optional).
The parameters of the hook function mainly include the following
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> 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> SummarizeThis 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:
|
<<: Analyze Tomcat architecture principles to architecture design
>>: CSS to achieve compatible text alignment in different browsers
Since the standard ab only supports stress testin...
Table of contents 1. Environment variable $PATH: ...
When configuring proxy_pass in nginx, if you matc...
This article shares the specific code of the WeCh...
<br />In the previous article, I introduced ...
This article records the detailed tutorial of MyS...
This article shares the installation and configur...
Basic Concepts Current read and snapshot read In ...
In the vue scaffolding, we can see that in the ne...
<Head>……</head> indicates the file he...
Preface When we use query statements, we often ne...
This article shares with you a detailed tutorial ...
This article shares the specific code for impleme...
This article records the detailed tutorial of MyS...
Overview Backup is the basis of disaster recovery...