UNPKG

vue

Version:

Reactive, component-oriented view layer for modern web interfaces.

11 lines (8 loc) 220 B
/* @flow */ import { mergeOptions } from '../util/index' export function initMixin (Vue: GlobalAPI) { Vue.mixin = function (mixin: Object) { this.options = mergeOptions(this.options, mixin) return this } }