A Vue UI components lib
npm install latios
// 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
-
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
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...