mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
8 lines
203 B
TypeScript
8 lines
203 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)
|
|
}
|