Vuejs Course

Mixins are JS objects that can be used to distribute reusable code among components. When a component uses mixin, all options of mixin become a part of the component options.

- Example:
// define a mixin object
var mixin_1 = {
 //function automatically called when Vue instance is created
 created: function(){
 this.hello();
 },
 methods: {
 hello: function(){
 console.log('hello from mixin.')
 }
 }
}

// define a component that uses this mixin
var component = Vue.extend({
 mixins: [mixin_1]
})

var comp = new component() // hello from mixin.
When a mixin and a component contain overlapping options, they are merged. If they contain same function or data object with same key, data from main Vue instance takes priority and will replace mixin's function and data with same key.

- In the following example we have mixin and Vue instance with data object that have same "msg" key.
// define a mixin object
var mixin_2 = {
 //function automatically called when Vue instance is created
 data: function(){
 return {msg: 'Hello from Mixin', str:'String from mixin'};
 }
}

// vue instance
var vm = new Vue({
 mixins: [mixin_2],
 data: {msg:'Msg replaced from component.', txt:'I`m a good person'},
 created: function(){
 console.log(this.$data);
 }
})

// {"msg": "Msg replaced from component.", "txt": "I`m a good person", "str": "String from mixin"}
- In the following example we have a method (here called "same_met") with same name in mixin and Vue instance.
// define a mixin object
var mixin_3 = {
 methods: {
 met_mixin: function(){
 console.log('Just wish and vision frequently its effect')
 },
 same_met: function(){
 console.log('The past not exists')
 }
 }
}

// define a component that uses this mixin
var vm = new Vue({
 mixins: [mixin_3],
 methods: {
 same_met: function(){
 console.log('I am my life')
 },
 met_inst: function(){
 console.log('Miracle is possible')
 }
 }
})

vm.met_inst(); // Miracle is possible
vm.met_mixin(); // Just wish and vision frequently its effect
vm.same_met(); // I am my life
Hook functions with the same name are merged into an array so that all of them will be called. Mixin hooks will be called before the component's hooks.
var mixin_4 ={
 created: function(){
 console.log('mixin - The wish is the request')
 }
}

new Vue({
 mixins: [mixin_4],
 created: function () {
 console.log('component - The vision is to receive')
 }
})

// mixin - The wish is the request
// component - The vision is to receive

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Click on the tag that creates an ordered list
<ul> <tr> <ol>
<ol>
  <li>List-1</li>
  <li>List-2</li>
</ol>
Which selector represents the ID of an element in CSS
.name #name name
#id {
  color: #0110fb;
}
What statement creates an object in JavaScript?
{} [] new Date()
var obj = {"site": "CoursesWeb.net", "pr": 5};
alert(obj.site);
Indicate the instruction used to evaluate if a condiition is True or False
else if() switch()
$var = 8;
if($var == 8) echo $var;
Mixins

Last accessed pages

  1. Adding text with ActionScript 3 (5494)
  2. Render Function (475)
  3. SHA1 Encrypt data in JavaScript (35347)
  4. Moving html element to a random direction (5089)
  5. Adobe Flash Courses ActionScript 3 Tutorials (6565)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (6)
  2. Adobe Flash Courses ActionScript 3 Tutorials (3)
  3. PHP-MySQL free course, online tutorials PHP MySQL code (3)
  4. Animation with the Timer class (3)
  5. ActionScript 3 Lessons (3)
Chat
Chat or leave a message for the other users
Full screenInchide