2. 创建 Vue 项目 命令行创建 Vue 项目 vue create my-project1.选择`Manually select features`(选择特性以创建项目)2.勾选特性可以用空格进行勾选。(a).Bable(b)Router(c)Linter/Formatter(d)Vuex3.选择 vue 的版本2.x(引入 ElementUi)// 3.x 引入 ElementUi 组件有兼容性问题4.Use history modeforro...
git clone https://git.** #进入项目目录 cd test-vue 项目名称 #安装依赖 npm install #建议不要直接使用cnpm安装依赖,会有各种诡异的bug。可以通过如下操作解决npm下载速度慢的问题 npm install --registry=https://registry.npm.taobao.org #启动服务 npm run dev ``` 浏览器访问 http://localhost:80 #...