创建vue的工程
在安装了node的情况下(电脑上vue)
1、打开cmd,到要创建工程的文件加下,创建一个名为 hello-vue(可以改) 的工程
cd //自己打
vue init webpack hello-vue
? Project name hello-vue
? Project description A Vue.js project
? Author //这里自己打一个
? Vue build standalone
? Install vue-router? No
? Use ESLint to lint your code? No
? Set up unit tests No
? Setup e2e tests with Nightwatch? No
? Should we run `npm install` for you after the project has been created? (recommended) no
vue-cli · Generated "hello-vue".
//像这样全部选no的话要自己装要进行第2步
2、安装依赖,需要安装 vue-router、element-ui、sass-loder 和 node-sass 四个插件(要在hello-vue的目录下安装)
// 进入工程目录
cd hello-vue
// 安装 vue-router
npm install vue-router --save-dev
// 安装 element-ui
npm i element-ui -s
// 安装依赖
npm install
// 安装 SASS 加载器 //cnpm 是国内的,也可以用npm
cnpm install sass-loade node-sass --save-dev
// 启动测试
npm run dev
才开始写博客,如果有错请见谅