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
Which tag renders as emphasized text, displaying the text oblique?
<strong> <pre> <em>
<p>Web development courses: <em>CoursesWeb.net</em></p>
Which CSS property defines the space between the element border and its content?
margin padding position
h3 {
  padding: 2px 0.2em;
}
Click on the method which returns the first element that matches a specified group of selectors.
getElementsByName() querySelector() querySelectorAll()
// gets first Div with class="cls", and shows its content
var elm = document.querySelector("div.cls");
alert(elm.innerHTML);
Indicate the PHP variable that contains data from a form sent with method="post".
$_SESSION $_GET $_POST
if(isset($_POST["field"])) {
  echo $_POST["field"];
}
Mixins

Last accessed pages

  1. CSS3 Flexbox Container (1028)
  2. MySQL Pooling Connections (1268)
  3. JavaScript code and PHP (40713)
  4. Refresh page if window width changes from a device size to other (1738)
  5. Functions - Advanced Use (527)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (210)
  2. Read Excel file data in PHP - PhpExcelReader (70)
  3. The Mastery of Love (60)
  4. PHP Unzipper - Extract Zip, Rar Archives (56)
  5. Register and show online users and visitors (39)
Chat
Chat or leave a message for the other users
Full screenInchide