首页 > 代码库 > Vue 建立工程

Vue 建立工程

npm install -g vue

npm install -g vue-cli

vue init webpack my-project

cd my-project

npm isntall

npm run dev

// npm install -g cnpm
// cnpm --registry=registry.taobao.org
// 淘宝的源 更快

my-project
|- build
|- config
|- node_modules
|- src
|- static
|- test
|- index.html
|- package.json
|- README.md

Vue 建立工程