Skip to content

Commit

Permalink
perf(ui/steps): add class (#378)
Browse files Browse the repository at this point in the history
  • Loading branch information
startgain authored Apr 4, 2022
1 parent 387af67 commit e0fcbb3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/varlet-ui/src/steps/Steps.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="var-steps" :style="{ flexDirection: direction === 'horizontal' ? 'row' : 'column' }">
<div :class="n()" :style="{ flexDirection: direction === 'horizontal' ? 'row' : 'column' }">
<slot />
</div>
</template>
Expand All @@ -10,6 +10,9 @@ import { useStep } from './provide'
import { props } from './props'
import type { ComputedRef } from 'vue'
import type { StepsProvider } from './provide'
import { createNamespace, call } from '../utils/components'
const { n } = createNamespace('steps')
export default defineComponent({
name: 'VarSteps',
Expand All @@ -23,7 +26,7 @@ export default defineComponent({
const { length, bindStep } = useStep()
const clickStep = (index: number) => {
props.onClickStep?.(index)
call(props.onClickStep, index)
}
const stepsProvider: StepsProvider = {
Expand All @@ -36,6 +39,9 @@ export default defineComponent({
}
bindStep(stepsProvider)
return {
n,
}
},
})
</script>
Expand Down

0 comments on commit e0fcbb3

Please sign in to comment.