Installing Vendor plugins with Npm and Yarn
Follow this 4 easy steps to install 3rd party plugin and use it in your Finder based project:
- Open your Terminal window and navigate to the root directory of your project (where you package.json file is located).
- Run npm install <package name> --save , yarn add <package name> --save. This command does two things: downloads package to
node_modules
folder and writes dependency to your package.json
file inside dependencies object
.
- Create Plugin folder if it doesn't exist. And create your plugin file in that folder.
- And register your plugin in nuxt config file like below.