mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
fc1ee59dea
This reverts commit 9e3fae7e9b.
@memohai/ui
UI components for Memoh.
Installation
npm install @memohai/ui
Usage
Import the CSS file in your style.css file.
@import "tailwindcss";
@import "tw-animate-css";
@import "@memohai/ui/style.css";
And then you can use the components in your Vue components.
<script setup>
import { Button } from '@memohai/ui';
</script>
<template>
<Button>Click me</Button>
</template>