Let's talk about Vue's mixin and inheritance in detail

Let's talk about Vue's mixin and inheritance in detail

Preface

Mixin in Vue is a relatively simple knowledge point. Developers who are familiar with CSS preprocessing languages ​​such as less and sass must be familiar with mixin. The mixins in Vue are almost the same as the mixins in less, etc. They all inject some defined functions into the Vue components as is, which is somewhat similar to inheritance in object-oriented programming (I just said similar :)).

A mixin is an object whose properties can be the lifecycle hooks and properties of a Vue instance or component instance. When mixed in globally or into a component, the Vue instance or component instance will have the lifecycle hooks and properties defined in the mixin. If there are duplicates between the two, they will be merged according to certain rules.

Mixin

  • Extract the function codes that are reused in multiple vue files into a single js file and call it where it is needed.
  • Define an object in a js file. In the object, you can write data, methods, components and other codes that can be defined in <script> in the vue file.

Mixin Note (duplicate name)

  • If there is a duplication between the data variable name in the component and the data variable name in the mixin, the component takes precedence;
  • If there are duplicate names of methods, computed, and wath in a component and methods, computed, and wath in a mixin, the component takes precedence;
  • When the life hook function in the component and the life hook function in the mixin have the same name, both will be executed, but the hook function in the component will be executed first;

Local Mixin

Global Mixins

Definition and global registration

Call

inherit

  • Note: Multiple inheritance is not suitable here, as multiple inheritance problems will occur more frequently.
  • In addition to inheriting .vue files, extends can also use objects in js files like mixin.
  • The HTML in the template in the extends inheritance.vue file cannot be inherited

Difference between mixin and inheritance

  • Let's first look at the definition in the official document. In fact, both can be understood as inheritance;
  • Mixins receive an array of objects (which can be understood as multiple inheritance);
  • What extends receives is an object or a function (which can be understood as single inheritance).
  • Note: If a component uses both inheritance and mixins, if there is a duplicate name between the two, the mixin will override the inheritance.

Summarize

This is the end of this article about Vue mixins and inheritance. For more relevant Vue mixins and inheritance content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of inheritance and extension of Vue2.0 components
  • Web project development VUE mixing and inheritance principle
  • Detailed explanation of mixed inheritance in Vue

<<:  How to implement scheduled backup of MySQL in Linux

>>:  MySQL master-slave replication delay causes and solutions

Recommend

CSS margin overlap and how to prevent it

The vertically adjacent edges of two or more bloc...

Vue project code splitting solution

Table of contents background Purpose Before split...

Analysis of idea compiler vue indentation error problem scenario

Project scenario: When running the Vue project, t...

Bug of Chinese input garbled characters in flex program Firefox

Chinese characters cannot be input in lower versio...

How to use the Clipboard API in JS

Table of contents 1. Document.execCommand() metho...

Detailed steps to install MySQL 8.0.27 in Linux 7.6 binary

Table of contents 1. Environmental Preparation 1....

How to query json in the database in mysql5.6 and below

When saving data in MySQL, sometimes some messy a...

Dynamic SQL statement analysis in Mybatis

This article mainly introduces the dynamic SQL st...

Vue uses canvas to realize image compression upload

This article shares the specific code of Vue usin...

Hide div in HTML Hide table TABLE or DIV content css style

I solved a problem tonight that has been botherin...

5 Reasons Why Responsive Web Design Isn’t Worth It

This article is from Tom Ewer's Managewp blog,...

How to enable MySQL remote connection in Linux server

Preface Learn MySQL to reorganize previous non-MK...

Mysql 5.6 adds a method to modify username and password

Log in to MySQL first shell> mysql --user=root...

How to dynamically add ports to Docker without rebuilding the image

Sometimes you may need to modify or add exposed p...