Skip to content

Commit f9e8c4c

Browse files
committed
[build] 2.1.10
1 parent 4f89091 commit f9e8c4c

File tree

8 files changed

+27
-19
lines changed

8 files changed

+27
-19
lines changed

dist/vue.common.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vue.js v2.1.9
2+
* Vue.js v2.1.10
33
* (c) 2014-2017 Evan You
44
* Released under the MIT License.
55
*/
@@ -3710,7 +3710,7 @@ Object.defineProperty(Vue$3.prototype, '$isServer', {
37103710
get: isServerRendering
37113711
});
37123712

3713-
Vue$3.version = '2.1.9';
3713+
Vue$3.version = '2.1.10';
37143714

37153715
/* */
37163716

@@ -5951,7 +5951,9 @@ var Transition = {
59515951
var id = "__transition-" + (this._uid) + "-";
59525952
var key = child.key = child.key == null
59535953
? id + child.tag
5954-
: child.key.indexOf(id) === 0 ? child.key : id + child.key;
5954+
: isPrimitive(child.key)
5955+
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
5956+
: child.key;
59555957
var data = (child.data || (child.data = {})).transition = extractTransitionData(this);
59565958
var oldRawChild = this._vnode;
59575959
var oldChild = getRealChild(oldRawChild);

dist/vue.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vue.js v2.1.9
2+
* Vue.js v2.1.10
33
* (c) 2014-2017 Evan You
44
* Released under the MIT License.
55
*/
@@ -3708,7 +3708,7 @@ Object.defineProperty(Vue$3.prototype, '$isServer', {
37083708
get: isServerRendering
37093709
});
37103710

3711-
Vue$3.version = '2.1.9';
3711+
Vue$3.version = '2.1.10';
37123712

37133713
/* */
37143714

@@ -5949,7 +5949,9 @@ var Transition = {
59495949
var id = "__transition-" + (this._uid) + "-";
59505950
var key = child.key = child.key == null
59515951
? id + child.tag
5952-
: child.key.indexOf(id) === 0 ? child.key : id + child.key;
5952+
: isPrimitive(child.key)
5953+
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
5954+
: child.key;
59535955
var data = (child.data || (child.data = {})).transition = extractTransitionData(this);
59545956
var oldRawChild = this._vnode;
59555957
var oldChild = getRealChild(oldRawChild);

dist/vue.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue.runtime.common.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vue.js v2.1.9
2+
* Vue.js v2.1.10
33
* (c) 2014-2017 Evan You
44
* Released under the MIT License.
55
*/
@@ -3710,7 +3710,7 @@ Object.defineProperty(Vue$2.prototype, '$isServer', {
37103710
get: isServerRendering
37113711
});
37123712

3713-
Vue$2.version = '2.1.9';
3713+
Vue$2.version = '2.1.10';
37143714

37153715
/* */
37163716

@@ -5951,7 +5951,9 @@ var Transition = {
59515951
var id = "__transition-" + (this._uid) + "-";
59525952
var key = child.key = child.key == null
59535953
? id + child.tag
5954-
: child.key.indexOf(id) === 0 ? child.key : id + child.key;
5954+
: isPrimitive(child.key)
5955+
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
5956+
: child.key;
59555957
var data = (child.data || (child.data = {})).transition = extractTransitionData(this);
59565958
var oldRawChild = this._vnode;
59575959
var oldChild = getRealChild(oldRawChild);

dist/vue.runtime.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vue.js v2.1.9
2+
* Vue.js v2.1.10
33
* (c) 2014-2017 Evan You
44
* Released under the MIT License.
55
*/
@@ -3708,7 +3708,7 @@ Object.defineProperty(Vue$2.prototype, '$isServer', {
37083708
get: isServerRendering
37093709
});
37103710

3711-
Vue$2.version = '2.1.9';
3711+
Vue$2.version = '2.1.10';
37123712

37133713
/* */
37143714

@@ -5949,7 +5949,9 @@ var Transition = {
59495949
var id = "__transition-" + (this._uid) + "-";
59505950
var key = child.key = child.key == null
59515951
? id + child.tag
5952-
: child.key.indexOf(id) === 0 ? child.key : id + child.key;
5952+
: isPrimitive(child.key)
5953+
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
5954+
: child.key;
59535955
var data = (child.data || (child.data = {})).transition = extractTransitionData(this);
59545956
var oldRawChild = this._vnode;
59555957
var oldChild = getRealChild(oldRawChild);

dist/vue.runtime.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/vue-server-renderer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-server-renderer",
3-
"version": "2.1.9",
3+
"version": "2.1.10",
44
"description": "server renderer for Vue 2.0",
55
"main": "index.js",
66
"repository": {

packages/vue-template-compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-template-compiler",
3-
"version": "2.1.9",
3+
"version": "2.1.10",
44
"description": "template compiler for Vue 2.0",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)