-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Closed
Labels
Description
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
cristijora