Web project development VUE mixing and inheritance principle

Web project development VUE mixing and inheritance principle

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

insert image description here

Global Mixins

Definition and global registration

insert image description here

Call

insert image description here

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

insert image description here

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.

The above is the detailed content of the mixing and inheritance principles of VUE in web project development. For more information about web development, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • A brief discussion on how Vue3 Composition API replaces Vue Mixins
  • Detailed explanation of Vue mixin
  • How to use mixins in Vue
  • Detailed explanation of Vue mixin usage and option merging
  • Vue detailed explanation of mixins usage
  • How to use Vue3 mixin

<<:  Using NTP for Time Synchronization in Ubuntu

>>:  Optimized record of using IN data volume in Mysql

Recommend

CentOS uses expect to remotely execute scripts and commands in batches

Sometimes we may need to operate servers in batch...

JavaScript Factory Pattern Explained

Table of contents Simple Factory Factory Method S...

XHTML Getting Started Tutorial: Simple Web Page Creation

Create your first web page in one minute: Let'...

Ubuntu20.04 VNC installation and configuration implementation

VNC is a remote desktop protocol. Follow the inst...

W3C Tutorial (1): Understanding W3C

W3C, an organization founded in 1994, aims to unl...

vue-cli configuration uses Vuex's full process record

Table of contents Preface Installation and Usage ...

Detailed explanation of incompatible changes of components in vue3

Table of contents Functional Components How to wr...

HTML table tag tutorial (19): row tag

The attributes of the <TR> tag are used to ...

Detailed explanation of querying JSON format fields in MySQL

During the work development process, a requiremen...

Detailed explanation of nginx forward proxy and reverse proxy

Table of contents Forward Proxy nginx reverse pro...

How to create a swap partition file in Linux

Introduction to Swap Swap (i.e. swap partition) i...

Flex layout allows subitems to maintain their own height

When using Flex layout, you will find that when a...

Solve the problem of docker log mounting

The key is that the local server does not have wr...

Specific use of useRef in React

I believe that people who have experience with Re...