# Nuxt3路由学习 **Repository Path**: running-team/nuxt3-app ## Basic Information - **Project Name**: Nuxt3路由学习 - **Description**: 第二章:Nuxt3路由篇 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: https://www.zhmzjl.com/ - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-04 - **Last Updated**: 2022-07-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: nuxt3 ## README # Nuxt 3 路由篇的学习例子 官方学习文档 [nuxt 3 documentation](https://v3.nuxtjs.org). ## Setup 安装依赖: ```bash # yarn yarn install # npm npm install # pnpm pnpm install --shamefully-hoist ``` ## Development Server 本地开发环境地址 http://localhost:3000, 本应该运行npm run dev, 但dev被我修改为了serve ```bash npm run serve ``` ## Production Build the application for production: ```bash npm run build ``` Locally preview production build: ```bash npm run preview ``` Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.