@arclux/arc-ui-vue
v2.1.0
Published
Vue 3 wrappers for ARC UI Web Components.
Downloads
3,131
Maintainers
Readme
@arclux/arc-ui-vue
Vue 3 component wrappers for ARC UI web components.
Auto-generated -- this package is produced by Prism from the canonical source in
@arclux/arc-ui. Do not edit by hand.
Installation
npm install @arclux/arc-ui-vue @arclux/arc-uiRequires vue >= 3.3.0.
Usage
<script setup>
import { Button, Card, Input } from '@arclux/arc-ui-vue';
</script>
<template>
<Button variant="primary" @click="console.log('clicked')">
Get Started
</Button>
<Card>
<h3>Card Title</h3>
<p>Card content.</p>
</Card>
<Input label="Email" type="email" placeholder="[email protected]" />
</template>Components are organized by category and can be imported from subpaths:
import { Button } from '@arclux/arc-ui-vue/input';
import { Card } from '@arclux/arc-ui-vue/content';
import { AppShell } from '@arclux/arc-ui-vue/layout';Documentation
Full component docs and interactive examples: arcui.dev
