
Vue-cli windows 7,8.1,10
Aug 22, 2017 · 1 min read
You can easily setup vue-cli in your windows machine.
#step-1
npm install -g vue#step-2
npm install -g vue-cli#step-3 now test
vue --version
You can see as like this .
2.8.2
# step-4
vue init webpack vue-router
then face some questions and give answer aftar install
cd vue-router
npm install
npm run dev

## Note
If you face , vue’ is not recognized as an internal or external command on windows
Follow this : https://stackoverflow.com/questions/27864040/fixing-npm-path-in-windows-8/32159233#32159233
23/08/2017 code4mk

