vue腳手架項(xiàng)目創(chuàng)建步驟詳解
vue腳手架 —> vue.cli
快速的創(chuàng)建一個(gè)大型的功能齊全的vue項(xiàng)目模板(初始化項(xiàng)目)
土味解釋:快速的創(chuàng)建一個(gè)空的vue項(xiàng)目
安裝(全局安裝)
- 全局安裝
> npm i @vue/cli -g
- 創(chuàng)建vue腳手架項(xiàng)目
> vue create 項(xiàng)目名
配置選項(xiàng)
Vue CLI v4.5.11 ? Please pick a preset: (Use arrow keys) > Default ([Vue 2] babel, eslint) Default (Vue 3 Preview) ([Vue 3] babel, eslint) Manually select features
- 按上下選擇 ,回車確認(rèn),這里選擇第三項(xiàng)手動(dòng)
選擇功能
Vue CLI v4.5.11 ? Please pick a preset: Manually select features ? Check the features needed for your project: (Press <space> to select, <a> to toggle all, <i> to invert selection) >(*) Choose Vue version (*) Babel ( ) TypeScript ( ) Progressive Web App (PWA) Support ( ) Router ( ) Vuex ( ) CSS Pre-processors (*) Linter / Formatter ( ) Unit Testing ( ) E2E Testing
- 上下移動(dòng)光標(biāo),空格選擇,回車確認(rèn),這里選擇 1 2 5 6 選項(xiàng)
選擇版本
? Check the features needed for your project: Choose Vue version, Babel, Router, Vuex ? Choose a version of Vue.js that you want to start the project with (Use arrow keys) > 2.x 3.x (Preview)
- 這里選擇 2.x
是否使用歷史模式
? Use history mode for router? (Requires proper server setup for index fallback in production) (Y/n)
- 這里輸入n 回車
Babel, ESLint等的配置位置
? Where do you prefer placing config for Babel, ESLint, etc.? (Use arrow keys) > In dedicated config files In package.json
- 這里選擇選擇第一項(xiàng) 專用配置文件存放
是否存為預(yù)置
? Save this as a preset for future projects? (y/N)
- 這里選擇 n
創(chuàng)建成功
Vue CLI v4.5.11
Creating project in D:\MyStudy\myvue2.
⚙️ Installing CLI plugins. This might take a while...
> core-js@3.9.1 postinstall D:\MyStudy\myvue2\node_modules\core-js
> node -e "try{require('./postinstall')}catch(e){}"
> ejs@2.7.4 postinstall D:\MyStudy\myvue2\node_modules\ejs
> node ./postinstall.js
added 1208 packages from 928 contributors in 21.836s
61 packages are looking for funding
run `npm fund` for details
🚀 Invoking generators...
📦 Installing additional dependencies...
added 5 packages from 1 contributor in 4.671s
61 packages are looking for funding
run `npm fund` for details
⚓ Running completion hooks...
📄 Generating README.md...
🎉 Successfully created project myvue2.
👉 Get started with the following commands:
$ cd myvue2
$ npm run serve
進(jìn)入項(xiàng)目 目錄
> cd myvue2
啟動(dòng)服務(wù)
> npm run serve
DONE Compiled successfully in 2492ms App running at: - Local: http://localhost:8080/ - Network: http://192.168.17.154:8080/ Note that the development build is not optimized. To create a production build, run npm run build.
到此這篇關(guān)于vue腳手架項(xiàng)目創(chuàng)建步驟詳解的文章就介紹到這了,更多相關(guān)vue腳手架項(xiàng)目創(chuàng)建內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
vue自定義密碼輸入框解決瀏覽器自動(dòng)填充密碼的問(wèn)題(最新方法)
這篇文章主要介紹了vue自定義密碼輸入框解決瀏覽器自動(dòng)填充密碼的問(wèn)題,通過(guò)將密碼輸入框的type設(shè)置為text,修改樣式上的顯示,來(lái)實(shí)現(xiàn)既可以讓瀏覽器不自動(dòng)填充密碼,又可以隱藏密碼的效果,需要的朋友可以參考下2023-04-04
vue2.0 實(shí)現(xiàn)導(dǎo)航守衛(wèi)(路由守衛(wèi))
vue-route 提供的 beforeRouteUpdate 可以方便地實(shí)現(xiàn)導(dǎo)航守衛(wèi)(navigation-guards)。這篇文章主要介紹了vue2.0 實(shí)現(xiàn)導(dǎo)航守衛(wèi)(路由守衛(wèi))的相關(guān)知識(shí),需要的朋友可以參考下2018-05-05
開發(fā)一個(gè)Parcel-vue腳手架工具(詳細(xì)步驟)
這篇文章主要介紹了開發(fā)一個(gè)Parcel-vue腳手架工具(詳細(xì)步驟),小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-09-09

