Files
element-plus/packages/element-plus/index.ts
jeremywu e926d20179 fix(build): exposing installer function and version for umd build (#3041)
* fix(build): exposing installer function and version for umd build

* fix codepen code snippet error
2021-08-25 11:27:16 +08:00

12 lines
371 B
TypeScript

import installer from './defaults'
export * from '@element-plus/components'
export * from '@element-plus/directives'
export * from '@element-plus/hooks'
export * from '@element-plus/tokens'
export { default as makeInstaller } from './make-installer'
export { default } from './defaults'
export const install = installer.install
export const version = installer.version