Vue 实战后台管理项目 0x0 Vuecli项目初始化

73 阅读1分钟

创建项目 

npm i --global vue-cli

vue init webpack vcustomers

初始化git

git init
git add .
git commit -m "init init"
git remote add origin https://gitee.com/用户名/仓库名.git

git pull origin master --allow-unrelated-histories
git push --set-upstream origin master

启动项目

npm i
npm run dev