vue-neobrutalism
v0.4.4
Published
Vue 3 neobrutalism ui kit
Maintainers
Readme
Vue Neobrutalism
Vue Neobrutalism is a component library for Vue 3, styled in a bold and modern neobrutalist design.
Disclaimer
⚠️ This library is in early development and not recommended for production use at the moment.
Storybook Demo
Check out the Storybook demo to see all available components in action.
Installation
npm install vue-neobrutalism
# or
yarn add vue-neobrutalism
# or
pnpm add vue-neobrutalismUsage
<template>
<section>
<h2>Welcome to vue-neobrutalism</h2>
<NeoButton>Support the author</NeoButton>
</section>
</template>
<script setup lang="ts">
import {NeoButton} from "vue-neobrutalism";
</script>