0.0.3 • Published 8 months ago
@mediusware/shaper-ui v0.0.3
@mediusware/shaper-ui
A simple opinionated UI library for Vue.js
Installation
npm install @mediusware/shaper-uiComponents
This library provides various UI components including:
- Alert
- Animation
- Badge
- Button
- Card
- CodeBlock
- DataTable
- DateTime
- Icons
- Loader
- Modal
- Popover
- Rating
- Search
- Skelaton
- Stepper
- Tab
- and more UI elements
Usage
<template>
<div>
<Button>Click Me</Button>
<Modal v-if="showModal" @close="showModal = false"> Modal Content </Modal>
</div>
</template>
<script setup>
import { ref } from "vue";
import { Button, Modal } from "@mediusware/shaper-ui";
const showModal = ref(false);
</script>License
ISC