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.
24 lines
485 B
24 lines
485 B
<script>
|
|
import Steps, { Step } from '../index'
|
|
import '../assets/index.less'
|
|
import '../assets/iconfont.less'
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
},
|
|
render () {
|
|
const Icon = ({ type }) => <i className={`rcicon rcicon-${type}`} />
|
|
return (
|
|
<Steps current={1}>
|
|
<Step title='步骤1' icon={<Icon type='cloud' />} />
|
|
<Step title='步骤2' icon='apple' />
|
|
<Step title='步骤3' icon='github' />
|
|
</Steps>
|
|
)
|
|
},
|
|
}
|
|
</script>
|