# node-web-learn-one **Repository Path**: webhsir/node-web-learn-one ## Basic Information - **Project Name**: node-web-learn-one - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-09 - **Last Updated**: 2025-06-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Vue 3 + Vite ## 安装 ``` yarn create vite my-vue-app --template vue ``` ## 适配 node 16.14.0 修改了 package.json ``` { "name": "my-vue-app", "private": true, "version": "0.0.0", "type": "module", "scripts": { "dev": "vite", "build": "vite build", "preview": "vite preview" }, "dependencies": { "vue": "^3.4.0" }, "devDependencies": { "@vitejs/plugin-vue": "^4.2.3", "vite": "^4.4.9" } } ``` ## 运行 ``` yarn dev ```