0.1.19 • Published 7 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-components
Usage
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
7 years ago
0.1.18
7 years ago
0.1.17
7 years ago
0.1.16
7 years ago
0.1.15
7 years ago
0.1.14
7 years ago
0.1.13
7 years ago
0.1.12
7 years ago
0.1.11
7 years ago
0.1.10
7 years ago
0.1.9
7 years ago
0.1.8
7 years ago
0.1.7
7 years ago
0.1.6
7 years ago
0.1.5
7 years ago
0.1.4
7 years ago
0.1.3
7 years ago
0.1.2
7 years ago
0.1.1
7 years ago
0.1.0
7 years ago