Home> Web Front-end> Vue.js> body text

When to use vue.use

coldplay.xixi
Release: 2020-11-12 11:42:57
Original
2505 people have browsed it

Time to use vue.use: When it is used, it actually calls the install method of the plug-in, so if the current plug-in introduced contains the install method, we need to use [Vue.use()].

When to use vue.use

【Recommended related articles:vue.js

What is Vue.use ?

Official description of the Vue.use() method: Use the global method Vue.use() to use plug-ins. Vue.use will automatically prevent multiple registrations of the same plug-in. It requires you to call new Vue. () Completed before starting the application, the Vue.use() method passes in at least one parameter. The parameter type must be Object or Function. If it is Object, then the Object needs to define an install method. If it is Function, then this function is regarded as install. method. When Vue.use() is executed, install will be executed by default. When install is executed, the first parameter is Vue, and the other parameters are other parameters passed in when Vue.use() is executed. That is to say, after using it, the install method of the component is called.

When should Vue.use() be used?

When used, it actually calls the install method of the plug-in, so if the current plug-in introduced contains the install method, we need to use Vue.use(). For example, refer to Element in Vue as follows:

import Vue from 'vue' import Element from 'element-ui' Vue.use(Element)
Copy after login

Because the install method is exposed in the Element source code, it needs to be introduced with Vue.use().

We can also define an install method in our own vue project, and then introduce it through the Vue.use() method to test it:

const plugin = { install() { alert("我是install内的代码") }, } import Vue from "vue" Vue.use(plugin) // 页面显示"我是install内的代码"
Copy after login

When we open the page, "I It’s the code in the install” prompt.

Related free learning recommendations:JavaScript(video)

The above is the detailed content of When to use vue.use. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!