latios
v0.0.3
Published
An UI framework for Vue.js
Downloads
3
Readme
A Vue UI components lib
npm install latios
Usage
// global use
import Vue from "vue";
import Latios from "latios";
Vue.use(Latios);
// individual use
import { ButtonPlugin } from "latios";
Vue.use(ButtonPlugin); // as a plugin
import { LButton, LButtonGroup } from "latios";
Vue.component('l-button',LButton); // as a component
Vue.component('l-button-group', LButtonGroup); // another component
Current lib
components
- button
- l-button
- l-button-group
- icon
- l-icon
- l-icon-button
- dropdown
- l-dropdown
- l-dropdown-item
- list
- l-list
- l-list-item
- link
- l-link
- l-breadcrumb
- button
directives
Project setup
To try our components now, git clone and use
npm run serve
and open your browser at "http://localhost:8080/" to view some examples in App.vue.
Our tutorial and site will be coming soon...