You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the vue invoke <name> command, vue-cli could automatically install the @vue/cli-plugin-<name> or vue-cli-plugin-<name>, using the user prefered tool (npm or yarn).
If <name> contains @vue/cli-plugin or vue-cli-plugin, use npm install <name> directly.
Then run the real invoke.
Example:
vue create my-app
cd my-app
vue invoke apollo
The text was updated successfully, but these errors were encountered:
Yeah. I was noticing tonight when I tried to add the just plugin to a project just by installing it it didn't automatically make the config updates. I just created an example with vue create with the plugin that I wanted and manually moved over the config.
Having a command like vue add to both install and configure the plugin would be nice.
When running the
vue invoke <name>
command, vue-cli could automatically install the@vue/cli-plugin-<name>
orvue-cli-plugin-<name>
, using the user prefered tool (npm or yarn).If
<name>
contains@vue/cli-plugin
orvue-cli-plugin
, usenpm install <name>
directly.Then run the real
invoke
.Example:
The text was updated successfully, but these errors were encountered: