Files
Memoh/packages/ui
BBQ 60517bc2a6 feat(acl): add bot security policy presets
Initialize new bots with preset ACL templates and an allow-by-default fallback so common access setups can be selected during bot creation instead of being configured manually afterward.
2026-04-14 05:51:38 +08:00
..
2026-01-29 14:57:18 +08:00
2026-01-09 12:33:04 +08:00
2026-01-09 12:33:04 +08:00
2026-04-14 01:16:06 +08:00

@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>