快速创建Vue项目
- step 1: 初始化项目
vue init webpack test
- step 2: 安装vue-router
cd test
npm i vue-router@3.5.2 --legacy-peer-deps
注意:需要进入项目目录;安装router的版本需与项目匹配。
- step 3: 安装element-ui
npm i element-ui -S
- step 4: 安装依赖
npm install
- step 5: 启动测试
npm run dev
打开浏览器,输入网址:localhost:8080,可得到如下页面。
本文来自博客园,作者:litecdows,作者在其他博客平台均使用此昵称!
转载请注明原文链接:https://www.cnblogs.com/litecdows/p/Vue-fast-first.html