mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 01:11:53 +08:00
27 lines
806 B
Vue
27 lines
806 B
Vue
<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 labelPlacement="vertical" current={1}>
|
|
<Step title="已完成" description={description} />
|
|
<Step title="进行中" description={description} />
|
|
<Step title="待运行" description={description} />
|
|
<Step title="待运行" description={description} />
|
|
<Step title="待运行" description={description} />
|
|
</Steps>
|
|
);
|
|
},
|
|
};
|
|
</script>
|