1. lazyThe lazy modifier is used to change the value of the input box. The value of the v-model binding will not change when the cursor leaves the input box. <input type="text" v-model.lazy="value"> <div>{{value}}</div> data() { return { value: '111111' } } 2.trimThe trim modifier is similar to the trim() method in JavaScript, which filters out the leading and trailing spaces of the value bound to v-model. <input type="text" v-model.trim="value"> <div>{{value}}</div> data() { return { value: '111111' } } 3.numberThe function of the number modifier is to convert the value into a number, but there are two different situations: entering the string first and entering the number first. <input type="text" v-model.number="value"> <div>{{value}}</div> data() { return { value: '111111' } } If you enter numbers first, only the first part of the numbers will be taken. If you enter letters first, the number modifier will be invalid. 4.stopThe stop modifier is used to stop bubbling <div @click="clickEvent(2)" style="width:300px;height:100px;background:red"> <button @click.stop="clickEvent(1)">Click</button> </div> methods: { clickEvent(num) { // Click the button without stop to output 1 2 // Added stop and clicked the button to output 1 console.log(num) } } 5. captureBy default, events bubble from the inside out. The capture modifier works the other way around, capturing events from the outside. <div @click.capture="clickEvent(2)" style="width:300px;height:100px;background:red"> <button @click="clickEvent(1)">Click</button> </div> methods: { clickEvent(num) { // Without capture, click the button to output 1 2 // Added capture and clicked the button to output 2 1 console.log(num) } } 6.selfThe self modifier is used to trigger the event only when the event binding itself is clicked. <div @click.self="clickEvent(2)" style="width:300px;height:100px;background:red"> <button @click="clickEvent(1)">Click</button> </div> methods: { clickEvent(num) { // Without adding self, click the button to output 1 2 // Added self. Clicking the button will output 1. Clicking the div will output 2. console.log(num) } } 7.onceThe once modifier is used to execute the event only once. <div @click.once="clickEvent(2)" style="width:300px;height:100px;background:red"> <button @click="clickEvent(1)">Click</button> </div> methods: { clickEvent(num) { // Without once, click the button multiple times to output 1 // Added once. Clicking the button multiple times will only output 1 once console.log(num) } } 8.PreventThe prevent modifier is used to prevent default events (such as the jump of the a tag) <a href="#" rel="external nofollow" @click.prevent="clickEvent(1)">Click me</a> methods: { clickEvent(num) { // Without prevent, click on label a to jump first and then output 1 // Added prevent, clicking on label a will not jump but will only output 1 console.log(num) } } 9.nativeThe native modifier is added to the event of the custom component to ensure that the event can be executed Cannot execute <My-component @click="shout(3)"></My-component> Can execute <My-component @click.native="shout(3)"></My-component> 10.left, right, middleThese three modifiers are events triggered by the left, middle and right buttons of the mouse <button @click.middle="clickEvent(1)" @click.left="clickEvent(2)" @click.right="clickEvent(3)">Click me</button> methods: { // Click the middle button to output 1 // Click the left button to output 2 // Right click to output 3 clickEvent(num) { console.log(num) } } 11. PassiveWhen we listen to the scroll event of an element, the onscroll event will be triggered continuously. This is no problem on the PC side, but on the mobile side, it will make our web page become stuck. Therefore, when we use this modifier, it is equivalent to giving the onscroll event a .lazy modifier. <div @scroll.passive="onScroll">...</div> 12. camelWithout camel viewBox, it will be recognized as viewbox <svg :viewBox="viewBox"></svg> Only after adding canmel viewBox will it be recognized as viewBox <svg :viewBox.camel="viewBox"></svg> 12.syncWhen a parent component passes a value to a child component, and the child component wants to change the value, it can do this In the parent component <children :foo="bar" @update:foo="val => bar = val"></children> In the subcomponent this.$emit('update:foo', newValue) The function of the sync modifier is to abbreviate: In the parent component <children :foo.sync="bar"></children> In the subcomponent this.$emit('update:foo', newValue) 13.keyCodeWhen we write the event like this, the event will be triggered no matter which button is pressed <input type="text" @keyup="shout(4)"> So what if you want to limit it to a certain button trigger? This is where the keyCode modifier comes in handy <input type="text" @keyup.keyCode="shout(4)"> KeyCode provided by Vue: //Ordinary key.enter .tab .delete //(captures the "delete" and "backspace" keys) .space .esc .up .down .left .right //System modifier key.ctrl .alt .meta .shift For example: Press ctrl to trigger <input type="text" @keyup.ctrl="shout(4)"> You can also use mouse events + buttons <input type="text" @mousedown.ctrl.="shout(4)"> Can trigger with multiple keys, such as ctrl + 67 <input type="text" @ This concludes this article about the 13 most frequently asked Vue modifiers in interviews. For more relevant Vue modifiers, please search 123WORDPRESS.COM’s previous articles or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: VM VirtualBox virtual machine mount shared folder
>>: Detailed explanation of Nginx timeout configuration
The first time I installed MySQL on my virtual ma...
Table of contents 1. Write in front 2. Overlay to...
<tr> <th width="12%">AAAAA&l...
Table of contents background Main content 1. Comp...
Load one or more features <template> <di...
CocosCreator version 2.3.4 Dragon bone animation ...
Sorting Problem I recently read "45 Lectures...
1. Problem description: MysqlERROR1698 (28000) so...
mapGetters Helper Function mapGetters helper func...
mysql 5.6.35 winx64 free installation version con...
The Meta tag is an auxiliary tag in the head area...
1. Check the software installation path: There is...
Preface What is the role of an agent? - Multiple ...
The :not pseudo-class selector can filter element...
1. Apache static resource cross-domain access Fin...