14 lines
336 B
Vue
14 lines
336 B
Vue
<template>
|
|
<a-steps type="arrow" :current="2">
|
|
<a-step description="This is a description">Succeeded</a-step>
|
|
<a-step description="This is a description">Processing</a-step>
|
|
<a-step description="This is a description">Pending</a-step>
|
|
</a-steps>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style lang="css" scoped></style>
|