Frontend/進階_React框架/README.md
2025-02-09 00:15:22 +08:00

20 lines
439 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### 文件導航測試
- [(必要)了解基本知識](docs/Basic.md)
- [(必要)認識專案結構](docs/Structure.md)
# 創建一個React專案
於準備開發的資料夾下方開啟CMD並執行
```
npm create vite@latest my-project --template react-ts
cd my-project
npm install
npm run dev
```
![image](assets/startReact.png)
#執行demo專案
開vscode到該專案資料夾(例如todolist_demo)
開啟終端機
```
npm run dev
```