0.1.6 • Published 3 years ago

@fssongwei/wei-ui v0.1.6

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

wei-ui

A vue components ui library

Feature

  1. Animated Timeline More components comming ...

Usage

Install

npm i @fssongwei/wei-ui --save

Use

<template>
    <Timeline :timelineItems="items" />
</template>
<script>
import { Timeline } from "@fssongwei/wei-ui";

const items = [
  {
    duration: "2020 - 2021",
    title: "Something big happened",
    description: "This will be some description text",
    img: require("/path/to/your/image.png"),
  },
]

export default {
  name: "TimelineDisplay",
  components: {
    Timeline,
  },
  data() {
    return {
      items,
    };
  },
};
</script>

Version History

Version 0.1.6

  1. Overflow bug fixed