1. Basic usage of MixinsNow there is a program that increments numbers by clicking. Assuming it has been completed, we hope that every time the data changes, a prompt "data has changed" can be printed in the console. Code implementation process: <div id="app"> <p>num:{{ num }}</p> <P><button @click="add">Add quantity</button></P> </div> <script> var addLog = { // Mix the updated hook into the vue instance updated() { console.log("The data changes to " + this.num + "."); } } var app = new Vue({ el: '#app', data: { num: 1 }, methods: { add: function () { this.num++; } }, mixins: [addLog], //mixin}) </script> When the button is clicked, the updated method in the mixed addLog is triggered. 2. The calling order of mixins
We also added the updated hook function to the constructor of the code above: <div id="app"> <p>num:{{ num }}</p> <P><button @click="add">Add quantity</button></P> </div> <script> var addLog = { updated : function () { console.log("The data changes to " + this.num + "."); } } var app = new Vue({ el: '#app', data: { num: 1 }, methods: { add: function () { this.num++; } }, updated: function () { console.log("updated method in the constructor.") }, mixins: [addLog], //mixin}) </script> 3. Global Mixin MethodGlobal mixins are executed before mixins and constructor methods. <div id="app"> <p>num:{{ num }}</p> <P><button @click="add">Add quantity</button></P> </div> <script> Vue.mixin({ updated: function () { console.log('I am mixed in globally'); } }) var addLog = { updated : function () { console.log("The data changes to " + this.num + "."); } } var app = new Vue({ el: '#app', data: { num: 1 }, methods: { add: function () { this.num++; } }, updated: function () { console.log("updated method in the constructor.") }, mixins: [addLog], //mixin}) </script> Sequential summary: When two object key names conflict, take the key-value pair of the component objectWhen there are test methods (with the same name) in both the mixin and the component object, the final value is the key-value pair of the component object. <div id="app"> <p>num:{{ num }}</p> <P> <button @click="add">Add quantity</button> </P> </div> <script> var addLog = { updated: function () { console.log("The data changes to " + this.num + "."); this.test(); }, methods: { test: function () { console.log('test in mixin') } } } var app = new Vue({ el: '#app', data: { num: 1 }, methods: { add: function () { this.num++; }, test:function(){ console.log('test in component object') } }, mixins: [addLog], //mixin}) </script> This is the end of this article about Vue.js mixins. For more information about Vue.js mixins, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the implementation process and usage of the Linux Recycle Bin mechanism
>>: Summary of MySQL common functions
1. Basic usage examples of float 1. Let's fir...
touch Command It has two functions: one is to upd...
I used to think that script could be placed anywh...
To obtain the calculated style in a CSS element (t...
If Ubuntu is the most popular Linux operating sys...
Table of contents Principle Source code analysis ...
How to set the position of the block element in t...
Due to the limitation of CPU permissions, communi...
Preface When installing the executable file of a ...
The installation tutorial of MySQL 5.7.27 is reco...
Table of contents 1. Overview of MySQL Logical Ar...
1. Introduction to MySQL permissions There are 4 ...
Table of contents definition grammar Examples 1. ...
Table of contents 1. Install the required environ...
I have read a lot of knowledge and articles about...