0.1.19 • Published 8 years ago
@lfiskr/vue-ui-components v0.1.19
@lfiskr/vue-ui-components

A set of UI Components for Vue2. Very much a work in progress - use at own risk
Installation
$ npm install --save @lfiskr/vue-ui-componentsUsage
import Vue from "Vue";
import UiComponents from "@lfiskr/vue-ui-components";
Vue.use(UiComponents);An optional config object can be passed as well. The option definition can be found in the models section.
import Vue from "Vue";
import UiComponents from "@lfiskr/vue-ui-components";
const options = {
theme: {
primary: "#245e3b"
}
};
Vue.use(UiComponents);Included components
TimelineComponent: The timeline component accepts an array of TimelineItems.
| Prop | Type |
|---|---|
| items | TimelineItem[] |
export interface TimelineItem {
title: string;
subtitles?: string[];
text: string;
icon?: Icon;
}Jumbotron: The jumbotron component accepts two named slots, left and right. This is the content that goes in the left and right section respectively.
License
MIT © Lasse Fisker
0.1.19
8 years ago
0.1.18
8 years ago
0.1.17
8 years ago
0.1.16
8 years ago
0.1.15
8 years ago
0.1.14
8 years ago
0.1.13
8 years ago
0.1.12
8 years ago
0.1.11
8 years ago
0.1.10
8 years ago
0.1.9
8 years ago
0.1.8
8 years ago
0.1.7
8 years ago
0.1.6
8 years ago
0.1.5
8 years ago
0.1.4
8 years ago
0.1.3
8 years ago
0.1.2
8 years ago
0.1.1
8 years ago
0.1.0
8 years ago