Keen UI v1.0 for Vue 2 released

Keen-UI

A lightweight collection of essential UI components written with Vue and inspired by Material Design. Use it to add UI elements without much trouble into your project.

Example

Installation

NPM (recommended)

npm install keen-ui --save

Usage

Using individual components

import 'keen-ui/dist/keen-ui.min.css'
import { UiAlert, UiButton, UiSnackbar } from 'keen-ui'

components: {
        UiAlert,
        UiButton
}

You can use is as a plugin (registers all components with Vue globally)

import KeenUI from 'keen-ui'

Vue.use(KeenUI)

To check the options available for each component visit the documentation.

<ui-button color="green" size="large">A large button!</ui-button>
<ui-alert type="warning">Alerts can also contain HTML</ui-alert>
<ui-snackbar action="Retry">Database connection failed</ui-snackbar>

The repository is available on GitHub. Created and submitted by Josephus Paye.