55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Vue
		
	
	
<script>
 | 
						|
import Basic from './basic.md'
 | 
						|
import Color from './color.md'
 | 
						|
import Pending from './pending.md'
 | 
						|
import Custom from './custom.md'
 | 
						|
import CN from '../index.zh-CN.md'
 | 
						|
import US from '../index.en-US.md'
 | 
						|
 | 
						|
const md = {
 | 
						|
  cn: `# 时间轴
 | 
						|
  垂直展示的时间流信息。
 | 
						|
  ## 何时使用
 | 
						|
  在操作需要较长时间才能完成时,为用户显示该操作的当前进度和状态。
 | 
						|
 | 
						|
  - 当有一系列信息需按时间排列时,可正序和倒序。
 | 
						|
  - 需要有一条时间轴进行视觉上的串联时。。
 | 
						|
        ## 代码演示`,
 | 
						|
  us: `# Data Display
 | 
						|
  Vertical display timeline.
 | 
						|
  ## When To Use
 | 
						|
  - When a series of information needs to be ordered by time (ascend or descend).
 | 
						|
  - When you need a timeline to make a visual connection.
 | 
						|
  ## Examples
 | 
						|
  `,
 | 
						|
}
 | 
						|
export default {
 | 
						|
  category: 'Components',
 | 
						|
  subtitle: '时间轴',
 | 
						|
  type: 'Data Display',
 | 
						|
  title: 'Timeline',
 | 
						|
  render () {
 | 
						|
    return (
 | 
						|
      <div>
 | 
						|
        <md cn={md.cn} us={md.us}/>
 | 
						|
        <br/>
 | 
						|
        <Basic />
 | 
						|
        <br/>
 | 
						|
        <Color />
 | 
						|
        <br/>
 | 
						|
        <Pending />
 | 
						|
        <br/>
 | 
						|
        <Custom />
 | 
						|
        <br/>
 | 
						|
        <api>
 | 
						|
          <template slot='cn'>
 | 
						|
            <CN/>
 | 
						|
          </template>
 | 
						|
          <US/>
 | 
						|
        </api>
 | 
						|
      </div>
 | 
						|
    )
 | 
						|
  },
 | 
						|
}
 | 
						|
</script>
 |