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

https://github.com/hehehai/arco-nuxt3

Nuxt3 with Arco Vue
https://github.com/hehehai/arco-nuxt3

arco nuxt3

Last synced: 3 months ago
JSON representation

Nuxt3 with Arco Vue

Awesome Lists containing this project

README

        




Arco Vue for Nuxt 3



❗️beta version❗️


πŸ–₯ Online Preview




[![Netlify Status](https://api.netlify.com/api/v1/badges/5d60cb09-4ab1-4e87-9fc2-20e6a604eaa7/deploy-status)](https://app.netlify.com/sites/arco-nuxt3/deploys)
## Features

- [πŸ’š Nuxt 3](https://v3.nuxtjs.org) - SSR, ESR, File-based routing, components auto importing, modules, etc.

- [πŸ₯° Arco Vue](https://arco.design) - Intelligent design syster Connect swift experience

- 🐝 Arco Component Auto import and can config module

- ⚑️ Vite - Instant HMR

- 🎨 [UnoCSS](https://github.com/antfu/unocss) - The instant on-demand atomic CSS engine.

- πŸ˜ƒ Use icons from any icon sets in Pure CSS, powered by [UnoCSS](https://github.com/antfu/unocss)

- πŸ”₯ The `` syntax

- 🍍 [State Management via Pinia](https://pinia.esm.dev), see [./composables/user.ts](./composables/user.ts)

- πŸ“‘ [Layout system](./layouts)

- πŸ“₯ APIs auto importing - for Composition API, VueUse and custom composables.

- 🏎 Zero-config cloud functions and deploy

- 🦾 TypeScript, of course

## Plugins

### Nuxt Modules

- [VueUse](https://github.com/vueuse/vueuse) - collection of useful composition APIs.
- [ColorMode](https://github.com/nuxt-community/color-mode-module) - dark and Light mode with auto detection made easy with Nuxt.
- [UnoCSS](https://github.com/antfu/unocss) - the instant on-demand atomic CSS engine.
- [Pinia](https://pinia.esm.dev/) - intuitive, type safe, light and flexible Store for Vue.

### Arco Module

```ts
interface ArcoNuxtModuleOptions {
// auto import icon [false]
icon?: boolean
// component prefix [a]
prefix?: string
}
```

```ts
export default defineNuxtConfig({
// ...
modules: [
// ...
['./modules/arco', { icon: true, prefix: 'a' }],
],
// ...
})
```

## IDE

We recommend using [VS Code](https://code.visualstudio.com/) with [Volar](https://github.com/johnsoncodehk/volar) to get the best experience (You might want to disable Vetur if you have it).

## Try it now!

### Online

<a href="https://stackblitz.com/github/heheai/arco-nuxt3"><img src="https://developer.stackblitz.com/img/open_in_stackblitz.svg" alt=""></a>

### GitHub Template

[Create a repo from this template on GitHub](https://github.com/hehehai/arco-nuxt3/generate).

### Clone to local

If you prefer to do it manually with the cleaner git history

```bash
npx degit hehehai/arco-nuxt3 my-arco-app
cd my-arco-app
pnpm i # If you don't have pnpm installed, run: npm install -g pnpm
```

### thx

- [vitesse-nuxt3](https://github.com/antfu/vitesse-nuxt3)