A. 在創建vue項目時Project description無法輸入,按回車也無效,無法進入到下一步。求解
創建vue項目
PHPStorm 使用git bash 為terminal終端
File -> Settings -> Tools -> Terminal
設置shell_path為"D:\Git\bin\sh.exe" --login -i這里注意路徑兩側的雙引號,如果去掉打開終端會報錯。
基本步驟
建立一個儲存vue項目的文件夾
在該文件夾目錄下的終端輸入npm install --global vue-cli(下載全局vue-cli)
vue-cli是vue.js的腳手架,用於自動生成vue.js+webpack的項目模板。
輸入vue init webpack timeattendance(timeattendance是我的項目名)
然後他會詢問你一些問題:
Project name項目名稱(確定按enter,否按N) (按enter)
Project description (A Vue.js project);項目描述(一vue.js項目)。(隨意輸入一段簡短介紹,不寫直接回車也行)(按enter)
Author (sunsanfeng);作者(sunsanfeng)。(確定按enter,否按N)(按enter)
Vue build (Use arrow keys)> Runtime + Compiler: recommended for most usersRuntime-only: about 6KB lighter min+gzip, but templates (or any Vue-specificHTML) are ONLY allowed in .vue files - render functions are required elsewhere;Vue公司的建立(使用箭頭鍵)>運行時+編譯器:大多數用戶推薦運行時間:約6kb輕民+ gzip,但模板(或任何Vue具體HTML)只允許在。VUE文件渲染功能是必需的其他地方。(按enter)
Install vue-router? (Y/n);安裝的路由?(Y/ n)。(可安可不安,建議安裝,因為項目肯定能用上) (選Y)
Use ESLint to lint your code? (Y/n);使用ESlint語法?(Y/ n)。(使用ESLint語法,就要做好心理准備,除非你非常懂ESLint語法,要不就會處處報錯,建議N) (選N)
Setup unit tests with Karma + Mocha? (Y/n);設置單元測試?(Y / n)。(選N)
Setup e2e tests with Nightwatch? (Y/n);Nightwatch建立端到端的測試?(Y / n)。(選N)
should we run 『npm install』 for you after the ogject has been created? ;(選擇Yes,use NPM)(按enter)
等待一會兒,項目就建好了。