Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .env.example

This file was deleted.

3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ jobs:
os: [ubuntu-latest]
node: [22]

env:
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }}

steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# Vue Dashboard Template

[![Nuxt UI Pro](https://img.shields.io/badge/Made%20with-Nuxt%20UI%20Pro-00DC82?logo=nuxt&labelColor=020420)](https://ui.nuxt.com/pro)
[![Nuxt UI](https://img.shields.io/badge/Made%20with-Nuxt%20UI-00DC82?logo=nuxt&labelColor=020420)](https://ui.nuxt.com)

Get started with the Vite + Vue dashboard template with multiple pages, collapsible sidebar, keyboard shortcuts, light & dark more, command palette and more, powered by [Nuxt UI Pro](https://ui.nuxt.com/pro).
Get started with the Vite + Vue dashboard template with multiple pages, collapsible sidebar, keyboard shortcuts, light & dark more, command palette and more, powered by [Nuxt UI](https://ui.nuxt.com).

- [Live Demo](https://vue-dashboard-template.nuxt.dev)
- [Documentation](https://ui.nuxt.com/getting-started/installation/pro/vue)
- [Live Demo](https://dashboard-vue-template.nuxt.dev)
- [Documentation](https://ui4.nuxt.com/docs/getting-started/installation/vue)

<a href="https://vue-dashboard-template.nuxt.dev/" target="_blank">
<a href="https://dashboard-vue-template.nuxt.dev/" target="_blank">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/c620cfcb-f244-49c0-8c9e-e95c17f014ef">
<source media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/dea19eb7-5219-46c2-9267-57a982b13569">
<img alt="Vue Dashboard Template" src="https://github.com/user-attachments/assets/dea19eb7-5219-46c2-9267-57a982b13569">
<source media="(prefers-color-scheme: dark)" srcset="https://ui4.nuxt.com/assets/templates/vue/dashboard-dark.png">
<source media="(prefers-color-scheme: light)" srcset="https://ui4.nuxt.com/assets/templates/vue/dashboard-light.png">
<img alt="Nuxt Dashboard Template" src="https://ui4.nuxt.com/assets/templates/vue/dashboard-light.png">
</picture>
</a>

## Nuxt Dashboard Template

The dashboard template for Nuxt is on https://github.com/nuxt-ui-pro/dashboard.
The dashboard template for Nuxt is on https://github.com/nuxt-ui-templates/dashboard.

## Quick Start

```bash [Terminal]
npx giget@latest gh:nuxt-ui-pro/dashboard-vue my-vue-dashboard
npx giget@latest gh:nuxt-ui-templates/dashboard-vue my-vue-dashboard
```

Once the directory is created, you can install the dependencies and start the development server using the `npm run dev` command.
Expand Down
29 changes: 16 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=public-sans:400,500,600,700" rel="stylesheet" />
<title>Vue Dashboard Template</title>
<meta name="description" content="A professional dashboard template built with Nuxt UI Pro, featuring multiple pages, data visualization, and comprehensive management capabilities for creating powerful admin interfaces.">
</head>
<body>
<div id="app" class="isolate"></div>
<script type="module" src="/src/main.ts"></script>
</body>

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=public-sans:400,500,600,700" rel="stylesheet" />
<title>Vue Dashboard Template</title>
<meta name="description" content="A professional dashboard template built with Nuxt UI, featuring multiple pages, data visualization, and comprehensive management capabilities for creating powerful admin interfaces.">
</head>

<body>
<div id="app" class="isolate"></div>
<script type="module" src="/src/main.ts"></script>
</body>

</html>
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "nuxt-ui-pro-template-dashboard-vue",
"name": "nuxt-ui-template-dashboard-vue",
"private": true,
"type": "module",
"scripts": {
Expand All @@ -10,7 +10,7 @@
"typecheck": "vue-tsc -p ./tsconfig.app.json"
},
"dependencies": {
"@nuxt/ui-pro": "^3.2.0",
"@nuxt/ui": "^4.0.0-alpha.1",
"@unovis/vue": "^1.5.2",
"date-fns": "^4.1.0",
"vue": "^3.5.17",
Expand Down
Loading