mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 03:38:41 +08:00
3138dea797
- Add noop install for all sub components for supress the warning
13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
|
|
|
import Skeleton from './src/index.vue'
|
|
import SkeletonItem from './src/item.vue'
|
|
|
|
export const ElSkeleton = withInstall(Skeleton, {
|
|
SkeletonItem,
|
|
})
|
|
export default ElSkeleton
|
|
export const ElSkeletonItem = withNoopInstall(SkeletonItem)
|
|
|
|
export * from './src/types'
|