mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +08:00
97e8848617
- Add publish.sh for automated publishing
12 lines
301 B
TypeScript
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
|