mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +08:00
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import Rate from './src/index.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
Rate.install = (app: App): void => {
|
|
app.component(Rate.name, Rate)
|
|
}
|
|
|
|
const _Rate = Rate as SFCWithInstall<typeof Rate>
|
|
|
|
export default _Rate
|
|
export const ElRate = _Rate
|