.fv-row.fv-steps
.step.fv-col.fv-col-lower-sm-12(v-for="(step, i) in steps",
:class="{highlighted: i <= value, completed: i < value}",
@click="$emit('input', i)")
.top
.line.before
h2.box
slot(v-if="$scopedSlots.box || $slots.box", name="box", :step="step", :index="i")
span(v-else, v-text="i + 1")
.line.after
h3.text
slot(v-if="$scopedSlots.text || $slots.text", name="text", :step="step", :index="i")
span(v-else, v-text="step")