constructor(vm) {
    Object.keys(vm).forEach(key => {
      Object.assign(this, { [key]: vm[key] })
    })
  }