Detailed explanation of the relationship between Vue and VueComponent

Detailed explanation of the relationship between Vue and VueComponent

The following case reviews the knowledge points of the prototype chain we learned before

       // Define a constructor function Demo() {
            this.a = 1
            this.b = 2
        }
        //Create a Demo instance object const d = new Demo()
        console.log(Demo.prototype); //Display prototype properties console.log(d.__proto__); //Implicit prototype properties console.log(Demo.prototype === d.__proto__); //true
        //The programmer operates the prototype object by displaying the prototype attributes and appending an x ​​attribute with a value of 99
        Demo.prototype.x = 99
        console.log('@',d.__proto__.x); 

Analyze VueComponent according to the following component

<body>
    <div id="root">
         <school></school>
    </div>
    <script>
        Vue.config.productionTip = false
        //Define the school component const school = Vue.extend({
            name: 'school',
            template: `
              <div>
                <h2>School name: {{name}}</h2>
                <h2>School address: {{address}}</h2>
              </div>
            `,
            data() {
                return {
                    name: 'Shang Silicon Valley',
                    address: 'Beijing'
                }
            }   
        })
        //Create Vue
        new Vue({
            el:'#root',
            components:{
                school,
            }
        })
    </script>
</body> 

1. The school component is essentially a constructor called VueComponent , and it is not defined by the programmer, but generated by Vue.extend

2. We only need to write <school/> or <school</school>, and Vue will help us create an instance object of the school component when parsing; that is, Vue helps us execute: new VueComponent(options)

3. Special note: Every time Vue.extend is called, a new VueComponent is returned

4. About this pointing:

  • In component configuration: data functions, functions in methods , functions in watch , functions in computed , their this are all VueComponent instance objects
  • In new Vue(options) configuration: data functions, functions in methods , functions in watch , functions in computed , their this are all Vue instance objects

5. VueComponent instance object, hereinafter referred to as vc ---- component instance object

Key Points

  • An important built-in relationship: VueComponent.prototype._proto_===Vue.prototype
  • Why is this relationship necessary: ​​to allow the component instance object vc to access the properties and methods on the Vue prototype

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Vue built-in component component--dynamically render component operations through the is attribute
  • Vue.component property description
  • vue dynamic component
  • Vue components dynamic components detailed explanation
  • Solve the component tag rendering problem of Vue

<<:  Interaction in web design: A brief discussion on paging issues

>>:  A brief discussion on the difference between MYSQL primary key constraint and unique constraint

Recommend

Methods for defragmenting and reclaiming space in MySQL tables

Table of contents Causes of MySQL Table Fragmenta...

MySQL fuzzy query usage (regular, wildcard, built-in function)

Table of contents 1. MySQL wildcard fuzzy query (...

MYSQL custom function to determine whether it is a positive integer example code

You can write a function: Mainly use regular expr...

Pure CSS3 realizes the effect of div entering and exiting in order

This article mainly introduces the effect of div ...

How to encapsulate timer components in Vue3

background When you open the product details on s...

What I learned while building my own blog

<br />In one year of blogging, I have person...

Detailed explanation of the difference between alt and title

These two attributes are often used, but their di...

Example code for implementing image adaptive container with CSS

There is often a scenario where the image needs t...

JavaScript implementation of magnifying glass details

Table of contents 1. Rendering 2. Implementation ...

MySQL series 6 users and authorization

Table of contents Tutorial Series 1. User Managem...

How to use bar charts in Vue and modify the configuration yourself

1. Import echart in HTML file <!-- Import echa...

Share 5 helpful CSS selectors to enrich your CSS experience

With a lot of CSS experience as a web designer, we...

Summary of Mysql common benchmark commands

mysqlslap Common parameter description –auto-gene...

The process of installing and configuring nginx in win10

1. Introduction Nginx is a free, open source, hig...

Echarts tutorial on how to implement tree charts

Treemaps are mainly used to visualize tree-like d...