# 通用的初始化 Vue3 專案步驟 Initialize project ```bash vue create project-name ``` Install tailwind ```bash vue add tailwind ``` Install pug loader ```bash npm i -D pug pug-plain-loader ``` VSCode 工作區設定 ```json= { "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "tailwindCSS.emmetCompletions": true, } ```