0.0.9 • Published 4 years ago

septemberui v0.0.9

Weekly downloads
36
License
-
Repository
-
Last release
4 years ago

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 abhisheksarmah660@gmail.com instead of using the issue tracker.

Credits