Blogger Information
Blog 21
fans 0
comment 1
visits 10953
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
vue项目创建安装
手机用户1620888567
Original
255 people have browsed it

vite和vue-cli 区别

上课案例

老师项目是用vite创建项目:安装vite—创建vite项目

1、文档介绍

  1. 、搭建 Vue 项目
  2. 1Vite 介绍
  3. Vite 是一种新型前端构建工具,能够显著提升前端开发体验。它主要由两部分组成
  4. 一个开发服务器,它基于 原生 ES 模块 提供了 丰富的内建功能,如速度快到惊人的 模块热更新(HMR)。
  5. 一套构建指令,它使用 Rollup 打包你的代码,并且它是预配置的,可输出用于生产环境的高度优化过的静态资源。
  6. 官网:https://cn.vitejs.dev/
  7. 2Vite 安装
  8. # 1、安装vite脚手架,全局安装
  9. // yarn
  10. yarn global add vite
  11. // npm
  12. npm install -g vite
  13. # 安装完成后,需要配置环境变量,根据自己的nodejs目录进行配置路径
  14. 我的电脑-》右击-》属性-》高级系统设置-》环境变量-》系统变量-》Path-》编辑-》新建(赋值nodejs目录下的node_global路径)
  15. D:\Program Files\nodejs\node_global\
  16. 3Vite 升级
  17. # yarn
  18. yarn global upgrade --latest vite
  19. # npm
  20. npm update -g vite
  21. 4Vite 卸载
  22. # yarn
  23. yarn global remove vite
  24. # npm
  25. npm uninstall vite -g
  26. 5Vite 创建 Vue 项目
  27. # 1、创建一个项目
  28. npm init vue@latest
  29. # 2、需要安装create-vue@3.3.4吗?
  30. Need to install the following packages:
  31. create-vue@3.3.4
  32. Ok to proceed? (y)
  33. # 3、项目名称
  34. Project name
  35. # 4、是否添加TypeScript
  36. Add TypeScript?
  37. # 5、是否添加JSC支持
  38. # 5.1、JSX即JavaScript XML,是React发明的一种JavaScript的语法扩展,允许 HTML 与 JavaScript 的混写;JSX本身也是一个表达式,在编译后,JSX表达式会变成普通的JavaScript对象。
  39. Add JSX Support?
  40. # 6、是否为单页应用程序开发添加Vue Router路由管理组件
  41. Add Vue Router for Single Page Application development?
  42. # 7、是否添加Pinia组件来进行状态管理
  43. Add Pinia for state management?
  44. # 8、是否添加Vitest来进行单元测试
  45. Add Vitest for Unit Testing?
  46. # 9、是否添加Cypress来进行单元测试和端到端测试
  47. Add Cypress for both Unit and End-to-End testing?
  48. # 10、是否添加ESLint来进行代码质量检查
  49. Add ESLint for code quality?
  50. 6、运行项目
  51. 参见图一
  52. # 1、进入目录
  53. cd vite
  54. # 2、安装模块
  55. 没有图二才执行这个语句
  56. yarn install 或者 npm install
  57. # 3、启动项目
  58. # 3.1、yarn
  59. yarn dev 或者 npm dev
  60. # 3.2、npm
  61. npm run dev
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post