element-plus/packages/rate/index.ts

12 lines
269 B
TypeScript

import { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
import Rate from './src/index.vue'
Rate.install = (app: App): void => {
app.component(Rate.name, Rate)
}
const _Rate: SFCWithInstall<typeof Rate> = Rate
export default _Rate