Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf(ui/steps): add class #378

Merged
merged 1 commit into from
Apr 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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