mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
3138dea797
- Add noop install for all sub components for supress the warning
11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
|
|
|
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)
|