mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
|
|
|
import Steps from './src/steps.vue'
|
|
import Step from './src/item.vue'
|
|
|
|
export const ElSteps = withInstall(Steps, {
|
|
Step,
|
|
})
|
|
export default ElSteps
|
|
export const ElStep = withNoopInstall(Step)
|
|
|
|
export * from './src/item'
|
|
export * from './src/steps'
|