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