The principle and basic use of Vue.use() in Vue

The principle and basic use of Vue.use() in Vue

Preface

I believe that many people will use Vue.use() when using other people's components with Vue. For example: Vue.use(VueRouter), Vue.use(MintUI). But when using axios, you don’t need to use Vue.use(axios), you can use it directly. So why is this?
Because axios is not installed.

1. Understanding with examples

Create two files in the new project: plugins.js use.js:

// plugins.js
const Plugin1 = {
  install(a,b){
    console.log('Plugin1 first parameter:',a)
    console.log('Plugin1 second parameter:',b)
  }
}

function Plugin2(a,b){
  console.log('Plugin2 first parameter:',a)
  console.log('Plugin2 second parameter:',b)
}

export{Plugin1,Plugin2}
// use.js 
import Vue from 'vue'
import {Plugin1,Plugin2} from './plugins'

Vue.use(Plugin1,'parameter 1')
Vue.use(Plugin2,'parameter A')
// main.js
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import './assets/plugins/use'

Vue.config.productionTip = false
new Vue({
  router,
  store,
  render: h => h(App)
}).$mount('#app')

From this we can see that the two consoles we wrote in the install method in plugin1 are printed out. The first one prints the Vue object, and the second one is the parameter we passed in.

Plugin2 does not have an install method. It is a method itself and can also print two parameters. The first is the Vue object, and the second is the parameter we passed in.
So now we have a vague guess about Vue.use~

2. Analyze the source code

toArray source code

export function toArray (list: any, start?: number): Array<any> {
  start = start || 0
  let i = list.length - start
  const ret: Array<any> = new Array(i)
  while (i--) {
    ret[i] = list[i + start]
  }
  return ret
}
import { toArray } from '../util/index'

export function initUse (Vue: GlobalAPI) {
  Vue.use = function (plugin: Function | Object) {
    const installedPlugins = (this._installedPlugins || (this._installedPlugins = []))
    if (installedPlugins.indexOf(plugin) > -1) {
      return this
    }

    // additional parameters
    const args = toArray(arguments, 1)
    args.unshift(this)
    if (typeof plugin.install === 'function') {
      plugin.install.apply(plugin, args)
    } else if (typeof plugin === 'function') {
      plugin.apply(null, args)
    }
    installedPlugins.push(plugin)
    return this
  }
}

From the source code, we can find that Vue first determines whether the plug-in has been registered, does not allow repeated registration, and the received plugin parameters are limited to the Function | Object type.

There are different treatments for these two types.

First, we organize the parameters we passed into an array: const args = toArray(arguments, 1);

Then add the Vue object to the beginning of the array args.unshift(this) , where this points to the Vue object;

If the install of the plugin we pass in (the first parameter of Vue.use) is a method. That is to say, if we pass in an object that contains an install method, then we call the install method of this plugin and pass the sorted array as a parameter to the install method, plugin.install.apply(plugin, args);

If the plugin we pass in is a function, then we call the function directly and pass the sorted array as a parameter, plugin.apply(null, args);

Then add this plug-in to the array of plug-ins that have been added, indicating that it has been registered installedPlugins.push(plugin);
Finally, return the Vue object.

3. Summary

Through the above analysis, we can know that there are two ways to write plug-ins in the future.

One is to encapsulate the logic of this plug-in into an object, and finally write the business code in install to expose it to the Vue object. The advantage of doing this is that you can add arbitrary parameters to this object to make the install function more concise and more extensible.

Another way is to write all the logic into a function and expose it to Vue.

In fact, the principles of the two methods are the same, except that the second method directly treats the plug-in as an install function.

Personally, I think the first method is more reasonable.

export const Plugin = {
    install(Vue) {
        Vue.component...
        Vue.mixins...
        Vue...
        // We can also execute other functions in install, Vue will point this to our plugin console.log(this) // {install: ...,utils: ...}
        this.utils(Vue) // Execute utils function console.log(this.COUNT) // 0
    },
    utils(Vue) {
        Vue...
        console.log(Vue) // Vue
    },
    COUNT: 0    
}
// We can add parameters to this object, and Vue will only execute the install method, while other methods can be used as auxiliary functions to encapsulate the install method const test = 'test'
export function Plugin2(Vue) {
    Vue...
    console.log(test) // 'test'
    // Note that if the plugin is written as a function, Vue will only point this to null, not to this function console.log(this) // null
}
// In this way, we can only write the plug-in logic in one function, and the encapsulation is not so strong

Summarize

This concludes this article about the principles and basic usage of Vue.use() in Vue. For more relevant Vue Vue.use() principles and usage 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:
  • vue custom component (used by Vue.use()) is the usage of install
  • A brief discussion on the vue.use() method from source code to usage
  • Specific usage of Vue's new toy VueUse
  • Usage of Vue.use() and installation

<<:  MySQL 8.0.22 download, installation and configuration method graphic tutorial

>>:  Analysis of HTTP interface testing process based on postman

Recommend

MySQL Series II Multi-Instance Configuration

Tutorial Series MySQL series: Basic concepts of M...

Detailed tutorial for installing mysql5.7.21 under Windows

This article shares the installation tutorial of ...

The difference between hash mode and history mode in vue-router

vue-router has two modes hash mode History mode 1...

Modify the style of HTML body in JS

Table of contents 1. Original Definition 2. JS op...

A brief discussion on several specifications of JS front-end modularization

Table of contents Preface The value of front-end ...

How to use stored procedures in MySQL to quickly generate 1 million records

Preface When testing, in order to test the projec...

Several ways to add timestamps in MySQL tables

Scenario: The data in a table needs to be synchro...

CSS Tricks to Create Wave Effects

It has always been very difficult to achieve wave...

How to change the MySQL database directory location under Linux (CentOS) system

How to change the MySQL database directory locati...

How to deploy code-server using docker

Pull the image # docker pull codercom/code-server...

MySQL 8.0.19 installation and configuration tutorial under Windows 10

I will be learning MySQL next semester. I didn...