Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/story2Dev/nuxt3-admin-dashboard
Building a Stunning Nuxt 3 Admin Dashboard: Naive UI,Echarts,Tailwind CSS,ESLint,Prettier
https://github.com/story2Dev/nuxt3-admin-dashboard
admin admin-dashboard nuxt3 tailwindcss
Last synced: about 2 months ago
JSON representation
Building a Stunning Nuxt 3 Admin Dashboard: Naive UI,Echarts,Tailwind CSS,ESLint,Prettier
- Host: GitHub
- URL: https://github.com/story2Dev/nuxt3-admin-dashboard
- Owner: story2Dev
- Created: 2023-12-02T07:56:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-14T15:46:43.000Z (7 months ago)
- Last Synced: 2024-06-15T09:45:27.570Z (7 months ago)
- Topics: admin, admin-dashboard, nuxt3, tailwindcss
- Language: Vue
- Homepage: https://nuxt3-admin.netlify.app/
- Size: 649 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Admin Dashboard
This is a simple admin dashboard built with Nuxt 3 and Tailwind CSS.
## Demo
[Demo Link](https://nuxt3-admin.netlify.app/)
![image](https://github.com/story2Dev/nuxt3-admin-dashboard/assets/18229355/cc6d602f-fdcc-4688-847b-4f15d1356e60)
![image](https://github.com/story2Dev/nuxt3-admin-dashboard/assets/18229355/561f3178-0b01-4beb-a625-e089d6923e5e)
## USE
[UI](https://www.naiveui.com/en-US/os-theme)
[nuxt-naiveui](https://github.com/becem-gharbi/nuxt-naiveui)
## Features
- [x] Nuxt 3
- [x] Tailwind CSS
- [x] EChart
- [x] TypeScript
- [x] ESLint
- [x] Prettier## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install# bun
bun install
```## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev# bun
bun run dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build# bun
bun run build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview# bun
bun run preview
```