ae854a8eabc5e8f98cabaed88d4c4a930d08b18992f351984c0e0c0a8b3361b4008970e856ee5e031e07908a62219be1a44de5cc2a75e42c2be8b6f5b1096c 220 B

12345678910
  1. /* @flow */
  2. import { mergeOptions } from '../util/index'
  3. export function initMixin (Vue: GlobalAPI) {
  4. Vue.mixin = function (mixin: Object) {
  5. this.options = mergeOptions(this.options, mixin)
  6. return this
  7. }
  8. }