@@ -135,6 +135,8 @@
<ElStep
v-for="(config, index) in pipelineConfig"
:key="index"
+ class="step"
+ @click="() => activeStep = index"
>
<template #title>
<span>{{getStage(config.name).title}}</span>
@@ -453,4 +455,7 @@ export default {
.button-group {
margin-left: 40px;
}
+.step {
+ cursor: pointer;
+}
</style>