zhangxiaoxu123
2023-07-05 cadf9d1cf4a0da42e739cf95df7e86f2a93089f6
1
2
3
4
5
6
7
8
9
10
11
12
13
class Mixin {
  constructor ({component, props, events, extraProps, exceptProps}) {
    this.render = function (h) {
      return h(component, {
        props: props.reduce((obj, key) => Object.assign(obj, {[key]: this[key]}), {}),
        on: events.reduce((obj, key) => Object.assign(obj, {[key]: this.transmitEvent}), {})
      })
    }
    this.props = [...extraProps, ...props.filter(prop => exceptProps.indexOf(prop))]
  }
}
 
export default prop => new Mixin(prop)