mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-12 10:45:10 +08:00
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
import { App } from 'vue'
|
|
import Steps from './src/index.vue'
|
|
import Step from './src/item.vue'
|
|
|
|
export default (app: App): void => {
|
|
app.component(Steps.name, Steps)
|
|
app.component(Step.name, Step)
|
|
}
|
|
|
|
export { Steps, Step }
|