element-plus/packages/skeleton/index.ts
jeremywu 97e8848617
build(project): feat/release-automation (#1094)
- Add publish.sh for automated publishing
2020-12-23 15:59:58 +08:00

12 lines
301 B
TypeScript

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