Plugins
Introduction
Section titled “Introduction”Plugins are self-contained code that usually add app-level functionality to Vue. This is how you install a plugin:
import { createApp } from 'vue'
const app = createApp({})
app.use(myPlugin, {/* optional options */})
A plugin is defined as either an object that exposes an install()
method, or simply a function that acts as the install function itself. The install function receives the application instance as its first argument, and an optional second argument containing options passed to app.use()
:
const myPlugin = {install(app, options) { // configure plugin with app}}
There is no strictly defined scope for a plugin, but common scenarios where plugins are useful include:
-
Register one or more global components or custom directives with
app.component()
andapp.directive()
. -
Make a resource injectable throughout the app by calling
app.provide()
. -
Add some global instance properties or methods by attaching them to
app.config.globalProperties
. -
A library that needs to perform some combination of the above (e.g. vue-router).
Writing a Plugin
Section titled “Writing a Plugin”In order to better understand how to create your own Vue.js plugins, we will create a very simplified version of a plugin that displays i18n
(short for Internationalization) strings.
Let’s begin by setting up the plugin object. It is recommended to create it in a separate file and export it, as shown below to keep the logic contained and separate.
-
Create a new file
plugins/i18n.js
-
Add the following code to the file:
plugins/i18n.js export default {install: (app, options) => {// Plugin code goes here}} -
Create a translation function, This function will receive a dot-delimited
key
string, which you will use to look up the translated string in the user-provided options. This is the intended usage in templates:<h1>{{ $translate('greetings.hello') }}</h1>Since this function should be globally available in all templates, you will make it so by attaching it to app.config.globalProperties in our plugin:
plugins/i18n.js export default {install: (app, options) => {// inject a globally available $translate() methodapp.config.globalProperties.$translate = (key) => {// retrieve a nested property in options// using key as the pathreturn key.split('.').reduce((o, i) => {if (o) return o[i]}, options)}}}The
$translate
function will take a string such as greetings.hello, look inside the user provided configuration and return the translated value. -
The object containing the translated keys should be passed to the plugin during installation via additional parameters to
app.use()
:import i18nPlugin from './plugins/i18n'app.use(i18nPlugin, {greetings: {hello: 'Bonjour!'}})
Now, the initial expression $translate('greetings.hello')
will be replaced by Bonjour!
at runtime.
See also: Augmenting Global Properties
Provide / Inject with Plugins
Section titled “Provide / Inject with Plugins”Plugins also allow us to use provide
to give plugin users access to a function or attribute. For example, you can allow the application to have access to the options
parameter to be able to use the translations object.
export default {install: (app, options) => { app.provide('i18n', options)}}
The plugin users can then access the translations object via the inject
option:
export default {install: (app, options) => { app.provide('i18n', options)}}
Plugin users will now be able to inject the plugin options into their components using the i18n
key:
export default {inject: ['i18n'],created() { console.log(this.i18n.greetings.hello)}}