快速创建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,可得到如下页面。
image

posted @ 2022-12-26 14:38  litecdows  阅读(45)  评论(0编辑  收藏  举报