Vue3的项目搭建

有两种方式可以搭建:

一:使用vue-cli中的webpack创建

 第二:推荐使用vite来创建项目

vite是新一代前端构建工具,新的前端构建工具,比webpack要快一些。

npm create vue@latest

创建完项目后,我们可以看到项目最外层有index.html

Vite项目中,index.html是项目的入口文件,在项目最外层。

加载html层后,vite解析<script type="module" src="xxx"></script>指向的JavaScript

vue3 通过createApp创建一个应用实例。

 

posted @ 2024-10-04 11:17  洛飞  阅读(60)  评论(0编辑  收藏  举报