luyilin / vue-light-timeline

A mobile first lightweight vue timeline components ( may be cute ??

Home Page:https://sme-fe.github.io/vue-light-timeline/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vue-light-timeline

A lightweight timeline components for vue2

Travis branch download version license

install

yarn add vue-light-timeline

if you prefer npm:

npm i vue-light-timeline

usage

import Vue from 'vue';
import LightTimeline from 'vue-light-timeline';

Vue.use(LightTimeline);
<template>
  <light-timeline :items='items'></light-timeline>
</template>
<script>
export default {
  data () {
    return {
      items: [
        {
          tag: '2018-01-12',
          content: 'hallo'
        },
        {
          tag: '2018-01-13',
          color: '#dcdcdc',
          type: 'circle',
          content: 'world'
        },
        {
          type: 'star',
          tag: '2018-01-14',
          content: '=v ='
        }
      ]
    }
  }
}
</script>

Demo

https://sme-fe.github.io/vue-light-timeline/#/

Hei, let's gonna try it online, have fun ~~

Edit vue-light-timeline example

demo screenshot

许昕

docs

Attributes

Attribute Description Type Accepted values Default
items timeline content data Array -- --

items

Attribute Description Type Accepted values Default
tag item tag String -- --
content item content String -- --
type point type String circle, star circle
color point color String purple,orange,yellow,or hex colors RGB colors so on... purple

Attributes

参数 说明 类型 可选值 默认值
items timeline 需要展示的数据 Array -- --

items

参数 说明 类型 可选值 默认值
tag item 标签(可选) String -- --
content item 内容 String -- --
type point 类型 String circle, star circle
color point 颜色 String purple,orange,yellow,or hex colors RGB colors so on... purple

Contributors

Thanks goes to these wonderful people (emoji key):


hwen

🤔 💻 🎨 📖 💡

License

MIT License

Copyright (c) 2017-present, hwen hwenleung@gmail.com

About

A mobile first lightweight vue timeline components ( may be cute ??

https://sme-fe.github.io/vue-light-timeline/

License:MIT License


Languages

Language:Vue 59.3%Language:JavaScript 36.1%Language:HTML 4.4%Language:CSS 0.2%