- Import the specific components you need at the top of your Vue file:
- Use the components in your template:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get started with Velure UI.
// Everything but icons are in @robojuice/velure-ui
import { Button, Spinner, Well } from '@robojuice/velure-ui';
// Icons are only within @robojuice/velure-ui/src/icons
import { IconDownload } from "@robojuice/velure-ui/src/icons";
<template>
<div>
<Button>Click me</Button>
<Spinner />
<Well>
<!-- Well content -->
</Well>
</div>
</template>