@heroui-vue/button
v1.0.0-beta.4
Published
```bash npm add @heroui-vue/button @heroui-org/theme ```
Maintainers
Readme
Installation
npm add @heroui-vue/button @heroui-org/themeConfiguration
// tailwind.config.js
const { heroui } = require('@heroui-org/theme')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// ...
'./node_modules/@heroui-org/theme/dist/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {},
},
darkMode: 'class',
plugins: [heroui()]
}Usage
<script lang="ts" setup>
import { Button } from '@heroui-vue/button'
</script>
<template>
<Button>Click</Button>
</template>