septemberui
v0.0.9
Published
Component library made with vuejs and tailwindcss
Downloads
3
Maintainers
Readme
September UI
For more info check the official site: http://september-ui.herokuapp.com/
September UI is a set of Vue components created to be customized to adapt to the unique design for your application.
It uses TailwindCss classes by default. No more Bootstrap like sites.
Installation & Usage
1. Install the dependencies
npm install septemberui --save
::: tip If you using the default theme you need to install TailwindCSS first :::
2. Configure your project to use septemberui in your sfc (single file component)
<template>
<div>
<alert>This is a alert</alert>
</div>
</template>
<script>
import { Alert } from "septemberui";
export default {
components: {
Alert
}
};
</script>
Changelog
Please see CHANGELOG for more information what has changed recently.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.