element-plus/packages/components/rate/index.ts

14 lines
305 B
TypeScript
Raw Normal View History

2020-08-04 15:27:37 +08:00
import Rate from './src/index.vue'
2020-10-29 17:28:26 +08:00
import type { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
Rate.install = (app: App): void => {
2020-08-04 15:27:37 +08:00
app.component(Rate.name, Rate)
}
2020-10-29 17:28:26 +08:00
const _Rate = Rate as SFCWithInstall<typeof Rate>
export default _Rate
export const ElRate = _Rate