UNPKG

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