From 50c4e3789f908a76b14e9cc75ffe840da5b1a26d Mon Sep 17 00:00:00 2001 From: Valera Trubachev Date: Fri, 7 Dec 2018 09:54:04 -0600 Subject: [PATCH] Fix mixin data merging documentation --- src/v2/guide/mixins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/guide/mixins.md b/src/v2/guide/mixins.md index e18a9c8f70..73c4f7dcf3 100644 --- a/src/v2/guide/mixins.md +++ b/src/v2/guide/mixins.md @@ -35,7 +35,7 @@ var component = new Component() // => "hello from mixin!" When a mixin and the component itself contain overlapping options, they will be "merged" using appropriate strategies. -For example, data objects undergo a shallow merge (one property deep), with the component's data taking priority in cases of conflicts. +For example, data objects undergo a recursive merge, with the component's data taking priority in cases of conflicts. ``` js var mixin = {