A lightweight timeline components for vue2
yarn add vue-simple-timeline
if you prefer npm:
npm i vue-simple-timeline
import Vue from 'vue';
import SimpleTimeline from 'vue-simple-timeline';
Vue.use(SimpleTimeline);
<template>
<simple-timeline :items='items'></simple-timeline>
</template>
<script>
export default {
data () {
return {
items: [
{
tag: '2018-01-12',
content: 'Hello. You can use <b>FULL</b> HTML here, be sure to sanitize<br/>if you are using user input!',
footer: 'Stuff you want to appear in the footer'
},
{
tag: '2018-01-13',
color: '#dcdcdc',
type: 'circle',
content: 'world'
},
{
type: 'star',
tag: '2018-01-14',
content: '=v ='
}
]
}
}
}
</script>
https://sme-fe.github.io/vue-light-timeline/#/
Hei, let's gonna try it online, have fun ~~
Attribute | Description | Type | Accepted values | Default |
---|---|---|---|---|
items | timeline content data | Array | -- | -- |
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 |
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
items | timeline 需要展示的数据 | Array | -- | -- |
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
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 |
Thanks goes to these wonderful people (emoji key):
hwen 🤔 💻 🎨 📖 💡 |
luyilin 🤔 💻 |
---|
This project follows the [all-contributors][all-contributors] specification. Contributions of any kind are welcome!
Copyright (c) 2017-present, hwen [email protected]