Vue3的專案搭建

洛飞發表於2024-10-04

有兩種方式可以搭建:

一:使用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建立一個應用例項。

相關文章