vue-init
Create Vue.js projects from templates
TLDR
Create project from template
$ vue init [template] [project-name]
Create from webpack template$ vue init webpack [project-name]
Create from local template$ vue init ~/my-template [project-name]
SYNOPSIS
vue init [options] template project-name
DESCRIPTION
vue init creates new Vue.js projects from templates. Legacy command from Vue CLI 2.x. For Vue CLI 3+, use vue create instead. Still useful for custom templates.
PARAMETERS
--clone
Use git clone instead of download.--offline
Use cached template.
CAVEATS
This is a Vue CLI 2.x command. Vue CLI 3+ uses vue create for new projects.
SEE ALSO
vue(1), vue-create(1)
