mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
2.3 KiB
2.3 KiB
Use Slot in Step
<n-steps
:current="current"
:status="currentStatus"
>
<n-step title="I Me Mine">
<div class="n-step-description">
<p>Al through the day, I me mine I me mine, I me mine</p>
<n-button
v-if="current === 1"
:type="buttonType"
size="small"
@click="handleButtonClick">
Next
</n-button>
</div>
</n-step>
<n-step title="Let It Be">
<div class="n-step-description">
<p>When I find myself in times of trouble Mother Mary comes to me</p>
<n-button
v-if="current === 2"
:type="buttonType"
size="small"
@click="handleButtonClick">
Next
</n-button>
</div>
</n-step>
<n-step title="Come Together">
<div class="n-step-description">
<p>Here come old flat top He come grooving up slowly</p>
<n-button
v-if="current === 3"
:type="buttonType"
size="small"
@click="handleButtonClick">
Next
</n-button>
</div>
</n-step>
<n-step title="Something">
<div class="n-step-description">
<p>Something in the way she moves Attracts me like no other lover</p>
<n-button
v-if="current === 4"
:type="buttonType"
size="small"
@click="handleButtonClick">
Next
</n-button>
</div>
</n-step>
</n-steps>
<n-radio-group v-model:value="currentStatus" size="medium" name="basic">
<n-radio-button value="error">
Error
</n-radio-button>
<n-radio-button value="process">
Process
</n-radio-button>
<n-radio-button value="wait">
Wait
</n-radio-button>
<n-radio-button value="finish">
Finish
</n-radio-button>
</n-radio-group>
import {
MdArrowRoundBack,
MdArrowRoundForward
} from '@vicons/ionicons-v4'
export default {
components: {
MdArrowRoundBack,
MdArrowRoundForward
},
data () {
return {
current: 1,
currentStatus: 'process'
}
},
computed: {
buttonType () {
switch (this.currentStatus) {
case 'error':
return 'error'
case 'finish':
return 'success'
default:
return 'default'
}
}
},
methods: {
handleButtonClick() {
this.current = (this.current % 4) + 1
}
}
}
.n-radio-group {
margin: 8px 16px 8px 0;
}