hy_gx
Version:
21 lines (16 loc) • 475 B
JavaScript
export * from './lang'
export * from './env'
export * from './dom'
export * from './props'
export * from './event'
export * from './guid'
import _cx from 'classnames'
import _KeyCode from './KeyCode'
import _slotMixin from './slotMixin'
export const cx = _cx
export const KeyCode = _KeyCode
export const slotMixin = _slotMixin
export function getPlainObject (vueObject) {
return JSON.parse(JSON.stringify(vueObject))
}
//这个index.js暂且不能被其它模块引用