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
- Host: GitHub
- URL: https://github.com/hehehai/arco-nuxt3
- Owner: hehehai
- License: mit
- Created: 2022-05-25T13:16:38.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-04T12:40:02.000Z (almost 3 years ago)
- Last Synced: 2025-01-14T03:40:23.531Z (5 months ago)
- Topics: arco, nuxt3
- Language: TypeScript
- Homepage: https://arco-nuxt3.netlify.app/
- Size: 122 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
Arco Vue for Nuxt 3
βοΈbeta versionβοΈ
π₯ Online Preview
![]()
[](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)