Difference between revisions of "Vue3"
Jump to navigation
Jump to search
(3 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
npm install -g @vue/cli | npm install -g @vue/cli | ||
vue create projectname - create a new project | <code>vue create 'projectname'</code> - create a new project | ||
* custom install allows you to pick plugins | * custom install allows you to pick plugins | ||
* store in dedicated config files | * store in dedicated config files | ||
Cd into folder | |||
* npm run serve - download modules and start dev server | |||
==[[#top|Back To Top]]-[[Main_Page| Home]] - [[VueJs|Category]]== | ==[[#top|Back To Top]]-[[Main_Page| Home]] - [[VueJs|Category]]== |
Latest revision as of 20:06, 2 November 2020
Vue CLI 3
npm install -g @vue/cli
vue create 'projectname'
- create a new project
- custom install allows you to pick plugins
- store in dedicated config files
Cd into folder
- npm run serve - download modules and start dev server