0.0.3 • Published 8 months ago

@mediusware/shaper-ui v0.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago

@mediusware/shaper-ui

A simple opinionated UI library for Vue.js

Installation

npm install @mediusware/shaper-ui

Components

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

0.0.3

8 months ago

0.0.2

8 months ago

0.0.1

8 months ago