@epignosis_llc/ui-vue
v1.1.1
Published
Epignosis Vue 3 component library.
Readme
@epignosis_llc/ui-vue
Vue 3 component library for the Epignosis design system. Ships compiled ESM + CJS + .d.ts and a CSS bundle.
Built on top of @epignosis_llc/ui-tokens. For background on the design system, see the main repository.
Install
pnpm add @epignosis_llc/ui-vue @epignosis_llc/ui-tokensPeer dependency: vue ^3.5.
Usage
<script setup lang="ts">
import { Button } from "@epignosis_llc/ui-vue";
import "@epignosis_llc/ui-tokens/tokens.css";
</script>
<template>
<Button>Hello</Button>
</template>