mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +08:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import { App } from 'vue'
|
|
import Skeleton from './src/index.vue'
|
|
|
|
Skeleton.install = (app: App): void => {
|
|
app.component(Skeleton.name, Skeleton)
|
|
}
|
|
|
|
export default Skeleton
|