🖼️ Nextcloud UI Kit for building Nextcloud apps with Vue
- ✨ Standardized UI Components
- 🛠️ Composables and frontend utilities
- 🔗 Reference providers utilities
📄 Documentation
Version | Target | Documentation |
---|---|---|
v9.x [main] | Nextcloud 30+ (Vue 3) | https://nextcloud-vue-components.netlify.app |
v8.x [stable8] | Nextcloud 28+ (Vue 2) | https://stable8--nextcloud-vue-components.netlify.app |
v7.x [stable7] | Nextcloud 25 - 27 | https://stable7--nextcloud-vue-components.netlify.app |
v6.x [stable6] | Nextcloud 24 - 25 | https://stable6--nextcloud-vue-components.netlify.app |
📦 Install
npm i @nextcloud/vue
🚀 Usage
Import corresponding components and other modules on use. Check the documentation for more details.
import NcButton from '@nextcloud/vue/components/NcButton' import { useHotKey } from '@nextcloud/vue/composables/useHotKey'
Import from a single root is available as well. Use with caution: this might lead to slower build time and larger bundles in some cases.
import { NcButton, useHotKey } from '@nextcloud/vue'