UNPKG

element-plus

Version:

A Component Library for Vue3.0

12 lines (8 loc) 301 B
import { App } from 'vue' import type { SFCWithInstall } from '@element-plus/utils/types' import Progress from './src/index.vue' Progress.install = (app: App): void => { app.component(Progress.name, Progress) } const _Progress: SFCWithInstall<typeof Progress> = Progress export default _Progress