# Plugins
Please use the install
-method when creating a plugin.
This will force developers to pass Vue
as an argument, otherwise the plugin might be added to the wrong Vue instance!
# Install
Provide an install
-method that receives the following arguments:
export function install(Vue, options) {
// Use Vue here...
}
# Plugin
Please use the Plugin
-postfix to identify that the file is a Nuxt plugin. For example axiosPlugin
.