Vue时间轴 vue-light-timeline
2021/5/12 10:30:27
本文主要是介绍Vue时间轴 vue-light-timeline,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1. 下载
npm install vue-light-timeline 或 yarn add vue-light-timeline
2.引入
import LightTimeline from 'vue-light-timeline'; Vue.use(LightTimeline);
3.使用
<template> <light-timeline :items='items'></light-timeline> </template> export default { data () { return { items: [ { tag: '2019-02-12', content: '测试内容' }, { tag: '2019-02-13', type: 'circle', content: '练习内容' } ] } } }
或者你还可以为时间轴的每个部分传递插槽:
<template> <light-timeline :items='items'> <template slot='tag' slot-scope='{ item }'> {{item.date}} </template> <template slot='content' slot-scope='{ item }'> {{item.msg}} </template> </light-timeline> </template> <script> export default { data () { return { items: [ { date: '2019-02-12', msg: '测试内容' }, { date '2019-02-13', msg: '练习内容' } ] } } }
效果:
摘录:https://blog.csdn.net/qq_40701522/article/details/87634700
这篇关于Vue时间轴 vue-light-timeline的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Vue新手入门教程:从零开始学习Vue框架
- 2024-11-23如何集成Ant Design Vue的图标
- 2024-11-23如何集成Ant Design Vue图标
- 2024-11-23使用vue CLI快速搭建Vue项目教程
- 2024-11-23Vue CLI多环境配置简单教程
- 2024-11-23Vue3入门教程:轻松搭建你的第一个Vue3应用
- 2024-11-23Vue3+Vite快速上手指南
- 2024-11-23Vue3阿里系UI组件入门指南
- 2024-11-23Vue3的阿里系UI组件入门指南
- 2024-11-23Vue3公共组件入门教程