An open API service indexing awesome lists of open source software.

https://github.com/razorcx-courses/nuxt3-gridjs-public

Nuxt 3 / Grid.js Tutorial
https://github.com/razorcx-courses/nuxt3-gridjs-public

grid-js nuxt nuxt-api nuxt-components nuxt-composables nuxt-module nuxt-modules nuxt-pages nuxt-plugins nuxt-server nuxt3

Last synced: about 1 month ago
JSON representation

Nuxt 3 / Grid.js Tutorial

Awesome Lists containing this project

README

        

# Nuxt 3 / Grid.js Starter

Live site at [nuxt3-gridjs](https://nuxt3-gridjs.netlify.app/).

Look at the Nuxt3 [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.

Look at the Grid.js [grid.js documentation](https://gridjs.io/docs/index) 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
```

Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment) for more information.