0.1.19 • Published 6 years ago

@lfiskr/vue-ui-components v0.1.19

Weekly downloads
1
License
-
Repository
-
Last release
6 years ago

@lfiskr/vue-ui-components NPM version Build Status

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.

PropType
itemsTimelineItem[]
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

6 years ago

0.1.18

6 years ago

0.1.17

6 years ago

0.1.16

6 years ago

0.1.15

6 years ago

0.1.14

6 years ago

0.1.13

6 years ago

0.1.12

6 years ago

0.1.11

6 years ago

0.1.10

6 years ago

0.1.9

6 years ago

0.1.8

6 years ago

0.1.7

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago