Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamiewarb/nuxt-data-fetch-examples
Examples of the different ways to fetch data using useAsyncData in a Nuxt 3 application
https://github.com/jamiewarb/nuxt-data-fetch-examples
Last synced: 10 days ago
JSON representation
Examples of the different ways to fetch data using useAsyncData in a Nuxt 3 application
- Host: GitHub
- URL: https://github.com/jamiewarb/nuxt-data-fetch-examples
- Owner: Jamiewarb
- Created: 2023-01-05T11:21:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-05T11:21:36.000Z (about 2 years ago)
- Last Synced: 2024-11-07T03:46:58.589Z (about 2 months ago)
- Language: Vue
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install --shamefully-hoist
```## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
```## Production
Build the application for production:
```bash
npm run build
```Locally preview production build:
```bash
npm run preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.