You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
721 B
25 lines
721 B
7 years ago
|
<script>
|
||
|
import Steps, { Step } from '../index'
|
||
|
import '../assets/index.less'
|
||
|
import '../assets/iconfont.less'
|
||
|
|
||
|
export default {
|
||
|
data () {
|
||
|
return {
|
||
|
description: '这里是多信息的描述啊这里是多信息的描述啊这里是多信息的描述啊这里是多信息的描述啊这里是多信息的描述啊',
|
||
|
}
|
||
|
},
|
||
|
render () {
|
||
|
const { description } = this
|
||
|
return (
|
||
|
<Steps current={2} status='error'>
|
||
|
<Step title='已完成' description={description} />
|
||
|
<Step title='进行中' description={description} />
|
||
|
<Step title='待运行' description={description} />
|
||
|
<Step title='待运行' description={description} />
|
||
|
</Steps>
|
||
|
)
|
||
|
},
|
||
|
}
|
||
|
</script>
|