# nuxt3_template **Repository Path**: gaijun2008/nuxt3_template ## Basic Information - **Project Name**: nuxt3_template - **Description**: Nuxt3框架模板,只要Nuxt3官网更新就会跟着更新,安装不了的小伙伴可以直接拉取 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 14 - **Created**: 2024-01-05 - **Last Updated**: 2024-01-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

🔥🔥🔥Nuxt3 项目模板🔥🔥🔥

--- ## 项目介绍 Nuxt3框架模板,只要Nuxt3官网更新就会跟着更新,安装不了的小伙伴可以直接拉取 - 集成了Nuxt3+@nuxt/ui+Pinia+EsLint+Prettier+Sass+TypeScript - 对request进行了基础的二次封装 - 内置了一些常用的工具函数和正则验证 ### 环境要求 - Node.js v18.0.0以上 ## Nuxt 3 项目启动 查看[Nuxt3 文档](https://nuxt.com/docs/getting-started/introduction)了解更多信息 ### 安装 安装项目依赖: ```bash # npm npm install # pnpm pnpm install # yarn yarn install # bun bun install ``` ### 开发服务器 启动本地开发环境 `http://localhost:3000`: ```bash # npm npm run dev # pnpm pnpm run dev # yarn yarn dev # bun bun run dev ``` ### 生产环境 打包生产环境: ```bash # npm npm run build # pnpm pnpm run build # yarn yarn build # bun bun run build ``` 本地运行预览生产版本: ```bash # npm npm run preview # pnpm pnpm run preview # yarn yarn preview # bun bun run preview ``` 查看[部署文档](https://nuxt.com/docs/getting-started/deployment)了解更多信息。