We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca02043 commit 1c40e32Copy full SHA for 1c40e32
src/core/global-api/mixin.js
@@ -5,5 +5,6 @@ import { mergeOptions } from '../util/index'
5
export function initMixin (Vue: GlobalAPI) {
6
Vue.mixin = function (mixin: Object) {
7
this.options = mergeOptions(this.options, mixin)
8
+ return this
9
}
10
src/core/global-api/use.js
@@ -6,7 +6,7 @@ export function initUse (Vue: GlobalAPI) {
Vue.use = function (plugin: Function | Object) {
/* istanbul ignore if */
if (plugin.installed) {
- return
11
// additional parameters
12
const args = toArray(arguments, 1)
0 commit comments