mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
import { App } from 'vue'
|
|
import Rate from './src/index.vue'
|
|
export default (app: App): void => {
|
|
app.component(Rate.name, Rate)
|
|
}
|