有两种方式可以搭建:
一:使用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创建一个应用实例。
标签:index,项目,创建,html,Vue3,vite,搭建 From: https://www.cnblogs.com/yansunda/p/18446341