Basic UI
A collection of basic but polished components for Vue 3.
npm install @sigveh/basic-ui
To use the components, simply import them where needed.
<!-- myComponent.vue -->
<script setup lang="ts">
import { Button, Input, Form } from '@sigveh/basic-ui'
import '@sigveh/basic-ui/dist/style.css' // should be imported globally, in main.ts
</script>
<template>
<Form>
<Input label="Email" placeholder="[email protected]" />
<Button type="submit">Submit</Button>
</Form>
</template>
Here is a simple overview of all components currently included in the library.
To run the documentation site, run this command
npm run docs:dev
Basic UI is licensed under the MIT license.