@ark-ui/vue
v4.4.2
Published
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
Downloads
40,009
Keywords
Readme
Welcome to Ark UI
Ark UI is a headless, open-source UI library with over 45+ components designed for building reusable, scalable Design Systems. It supports a wide range of JavaScript frameworks, offering dedciated packages for each supported framework.
Supported Frameworks
Ark UI is available for the following JavaScript frameworks:
- React:
@ark-ui/react
- Solid:
@ark-ui/solid
- Vue:
@ark-ui/vue
Available Components
- Accordion
- Avatar
- Carousel
- Checkbox
- Clipboard
- Collapsible
- Color Picker
- Combobox
- Date Picker
- Dialog
- Editable
- Field
- Fieldset
- File Upload
- Hover Card
- Menu
- Number Input
- Pagination
- Pin Input
- Popover
- Progress - Circular
- Progress - Linear
- QR Code
- Radio Group
- Rating Group
- Segment Group
- Select
- Signature Pad
- Slider
- Splitter
- Switch
- Tabs
- Tags Input
- Time Picker
- Toast
- Toggle Group
- Tooltip
- Tree View
Installation
To install @ark-ui/vue
, run the following command:
npm install @ark-ui/vue
or with yarn:
yarn add @ark-ui/vue
Usage
To use a component from @ark-ui/vue
, import it and include it in your application:
<script setup lang="ts">
import { Slider } from '@ark-ui/vue'
import { ref } from 'vue'
const value = ref([30])
</script>
<template>
<Slider.Root :min="-50" :max="50" v-model="value">
<Slider.Label>Label</Slider.Label>
<Slider.ValueText>{{ value }}</Slider.ValueText>
<Slider.Control>
<Slider.Track>
<Slider.Range />
</Slider.Track>
<Slider.Thumb :index="0" />
</Slider.Control>
</Slider.Root>
</template>
Documentation
For more detailed documentation and examples, please visit the official documentation.
Roadmap
You can request, vote for, and check upcoming features on our roadmap.
Contribution
We welcome contributions to Ark UI. Please read our contributing guidelines for more information on how to contribute.
License
This project is licensed under the terms of the MIT license.