mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
ac83f03894
* refactor(components): [steps] switch to script-setup syntax improvement(components): [steps] props type improvement(components): [steps] unnecessary type * fix(comoponents): [steps] import error * fix(comoponents): [steps] import error
11 lines
261 B
TypeScript
11 lines
261 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)
|