1. Background I was recently interviewing for a job, and the interviewer asked about custom directives. Since I don’t use custom directives very often, I just read the official documentation and roughly knew that I needed to use This is the official documentation module about custom instructions; custom instructions include global custom instructions and local custom instructions 2. Local custom instructions If you want to register local directives, the component also accepts a @Component({ name: "CustomDirectives", components: {}, directives: { // Local custom directive custom1: { inserted(el) { console.log("el", el); el.style.position = "absolute"; el.style.top = "50%"; el.style.left = "50%"; el.style.transform = "translate(-50%,-50%)"; el.innerText = "Loading..."; el.style.padding = "10px"; el.style.color = "#333"; }, }, }, }) 3. Global custom instructionsVue.directive("custom2", { inserted(el, binding) { console.log("binding", binding); if (binding && binding.value) { el.innerText = "Test global custom instructions"; console.log("el", el); el.style.position = "absolute"; el.style.top = "50%"; el.style.left = "50%"; el.style.transform = "translate(-50%,-50%)"; el.style.padding = "10px"; el.style.color = "#333"; } }, }); 4.1 Custom command hook function
4.2 Hook function parameters
Contains the following properties:
4.3 Dynamic instruction parameter transmissionVue.directive("custom2", { inserted(el, binding) { console.log("binding", binding); if (binding && binding.value) { el.innerText = "Test global custom instructions"; console.log("el", el); el.style.position = "absolute"; el.style.top = "50%"; const arg = (binding as any).arg; el.style[arg] = "50%"; el.style.transform = "translate(-50%,-50%)"; el.style.padding = "10px"; el.style.color = "#333"; } }, }); <div v-custom2:[direction]="true"></div> private direction = 'left'; 5. Extension After asking about custom instructions, the interviewer asked you what default instructions you usually use? This is the end of this detailed article about Vue custom instructions. For more relevant Vue custom instructions, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
>>: Solve the problem of blank gap at the bottom of Img picture
Navigation bar creation: Technical requirements: ...
Use Code Cloud to build a Git code storage wareho...
Table of contents topic analyze Basic solution Ba...
Table of contents What are immutable values? Why ...
This article shares the specific code of JS to ac...
Table of contents 1. Listening for events 2. Pass...
Regarding the issue that JavaScript strict mode d...
This article shares the specific code of JS to ac...
I spent a day on it before this. Although Seata i...
Table of contents Preface 1. Create objects befor...
We deal with Linux servers every day, especially ...
DetachKeyPair Unbind SSH key pairs from one or mo...
Table of contents 1. Brief Overview 2. Detailed e...
Visual Studio Code is a powerful text editor prod...
Clicking to switch pictures is very common in lif...