Introduction to install method in Vue

Introduction to install method in Vue

vue provides install for us to develop new plug-ins and globally register components, etc.

The first parameter of the install method is the vue constructor, and the second parameter is an optional options object

export default {

	install(Vue,option){

		Component directive mixin mount vue prototype }

}

1. Globally registered components

import PageTools from '@/components/PageTools/pageTools.vue'

import update from './update/index.vue'

import ImageUpload from './ImageUpload/ImageUpload.vue'

import ScreenFull from './ScreenFull'

import ThemePicker from './ThemePicker'

import TagsView from './TagsView'

export default {

  install(Vue) {

    Vue.component('PageTools', PageTools)

    Vue.component('update', update)

    Vue.component('ImageUpload', ImageUpload)

    Vue.component('ScreenFull', ScreenFull)

    Vue.component('ThemePicker', ThemePicker)

    Vue.component('TagsView', TagsView)

  }

}

In main.js, directly use reference and Vue.use to register

import Component from '@/components'

Vue.use(Component)

2. Global custom instructions

export default{

	install(Vue){

		Vue.directive('pre',{

			inserted(button,bind){

				button.addEventListener('click',()=>{

					if(!button.disabled){

						button.disabled = true;

						setTimeout(()=>{

							button.disabled = false

						},1000)

					}

				})

			}

		})

	}

}

In main.js, just like registering components

import pre from '@/aiqi'

Vue.use(pre)

This is the end of this article about the install method in vue. For more relevant content about the install method in vue, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • In-depth understanding of Vue's plug-in mechanism and installation details
  • vue npm install install a specified version operation
  • vue custom component (used by Vue.use()) is the usage of install
  • Vue Pitfalls - Installing dependent modules in the project npm install reports an error

<<:  Linux Samba server super detailed installation and configuration (with problem solving)

>>:  Solve the problem that the name of the type=file file modification form cannot be echoed normally

Recommend

5 ways to determine whether an object is an empty object in JS

1. Convert the json object into a json string, an...

HTML+CSS to create heartbeat special effects

Today we are going to create a simple heartbeat e...

Tutorial on deploying nginx+uwsgi in Django project under Centos8

1. Virtual environment virtualenv installation 1....

Learn to deploy microservices with docker in ten minutes

Since its release in 2013, Docker has been widely...

Eight ways to implement communication in Vue

Table of contents 1. Component Communication 1. P...

Nginx access control and parameter tuning methods

Nginx global variables There are many global vari...

How to use async and await correctly in JS loops

Table of contents Overview (Loop Mode - Common) D...

Summary of 11 amazing JavaScript code refactoring best practices

Table of contents 1. Extracting functions 2. Merg...

Solution to many line breaks and carriage returns in MySQL data

Table of contents Find the problem 1. How to remo...

Several common ways to deploy Tomcat projects [tested]

1 / Copy the web project files directly to the we...

Div nested html without iframe

Recently, when doing homework, I needed to nest a ...

Introduction to common commands and shortcut keys in Linux

Table of contents 1 System Introduction 2 System ...

Idea deploys remote Docker and configures the file

1. Modify the Linux server docker configuration f...

Detailed explanation of count(), group by, order by in MySQL

I recently encountered a problem when doing IM, a...