export function initInternalComponent (vm: Component, options: InternalComponentOptions) {
const opts = vm.$options = Object.create(vm.constructor.options)
console.log(vm)
// doing this because it's faster than dynamic enumeration.
...
}
这段代码中,为什么要使用 Object.create 方法?直接赋值不可以么?为什么要赋值给 vm.$options 的原型对象 Object。