0 votes
in VueJS by
How do you install plugins in an existing Vue CLI project?

1 Answer

0 votes
by

You can install a plugin into an already created project with the vue add command.

vue add @vue/eslint
(OR)
vue add @vue/cli-plugin-eslint

You can also add options for plugin

vue add @vue/eslint --config airbnb --lintOn save

If a plugin is already installed, you can skip the installation and only invoke its generator with the vue invoke command.

Related questions

0 votes
asked Jan 9, 2020 in VueJS by GeorgeBell
0 votes
...