Skip to content

Commit ce62e16

Browse files
committed
chore: small improvements
1 parent be99419 commit ce62e16

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Nuxt UI](https://img.shields.io/badge/Made%20with-Nuxt%20UI-00DC82?logo=nuxt&labelColor=020420)](https://ui.nuxt.com)
44
[![Nitro](https://img.shields.io/badge/Bult%20with-Nitro-ff637e?logo=nitro&labelColor=18181B)](https://nitro.build)
55

6-
Full-featured AI Chatbot Nuxt application with authentication, chat history, multiple pages, collapsible sidebar, keyboard shortcuts, light & dark mode, command palette and more. Built using [Nuxt UI](https://ui.nuxt.com) components and integrated with [AI SDK v5](https://sdk.vercel.ai) for a complete chat experience.
6+
Full-featured AI Chatbot Vue application with authentication, chat history, multiple pages, collapsible sidebar, keyboard shortcuts, light & dark mode, command palette and more. Built using [Nuxt UI](https://ui.nuxt.com) components and integrated with [AI SDK v5](https://sdk.vercel.ai) for a complete chat experience.
77

88
- [Live demo](https://chat-vue-template.nuxt.dev/)
99
- [Documentation](https://ui.nuxt.com/docs/getting-started/installation/vue)
@@ -20,15 +20,15 @@ Full-featured AI Chatbot Nuxt application with authentication, chat history, mul
2020

2121
- ⚡️ **Streaming AI messages** powered by the [AI SDK v5](https://sdk.vercel.ai)
2222
- 🤖 **Multiple model support** via various AI providers with built-in AI Gateway support
23-
- 🔐 **Authentication** via GitHub OAuth using a Nitro server route and httpOnly cookies
23+
- 🔐 **Authentication** via GitHub OAuth using [Nitro server routes](https://nitro.build) and httpOnly cookies
2424
- 💾 **Chat history persistence** using PostgreSQL database and [Drizzle ORM](https://orm.drizzle.team)
2525
- 💬 **Markdown rendering** using [vue-markdown-render](https://github.com/Simon-He95/vue-markdown-render)
2626
- 🚀 **Easy deploy** to Vercel with zero configuration
2727

2828
## Quick Start
2929

3030
```bash
31-
npm create nuxt@latest -- -t github:nuxt-ui-templates/chat-vue
31+
npm create nuxt@latest -- --no-modules -t github:nuxt-ui-templates/chat-vue
3232
```
3333

3434
## Deploy your own

src/components/UserMenu.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,21 +99,21 @@ const items = computed<DropdownMenuItem[][]>(() => ([[{
9999
label: 'Templates',
100100
icon: 'i-lucide-layout-template',
101101
children: [{
102-
label: 'Vue Starter',
102+
label: 'Starter',
103103
to: 'https://starter-vue-template.nuxt.dev/'
104104
}, {
105-
label: 'Vue Dashboard',
105+
label: 'Dashboard',
106106
to: 'https://dashboard-vue-template.nuxt.dev/'
107107
}]
108108
}], [{
109109
label: 'Documentation',
110110
icon: 'i-lucide-book-open',
111-
to: 'https://ui.nuxt.com/docs/getting-started/installation/nuxt',
111+
to: 'https://ui.nuxt.com/docs/getting-started/installation/vue',
112112
target: '_blank'
113113
}, {
114114
label: 'GitHub repository',
115115
icon: 'i-simple-icons:github',
116-
to: 'https://github.com/nuxt-ui-templates/chat',
116+
to: 'https://github.com/nuxt-ui-templates/chat-vue',
117117
target: '_blank'
118118
}], [{
119119
label: 'Log out',

0 commit comments

Comments
 (0)