Browse Source

[build] 2.1.10

dev
Evan You 8 years ago
parent
commit
f9e8c4c6b2
  1. 8
      dist/vue.common.js
  2. 8
      dist/vue.js
  3. 6
      dist/vue.min.js
  4. 8
      dist/vue.runtime.common.js
  5. 8
      dist/vue.runtime.js
  6. 4
      dist/vue.runtime.min.js
  7. 2
      packages/vue-server-renderer/package.json
  8. 2
      packages/vue-template-compiler/package.json

8
dist/vue.common.js

@ -1,5 +1,5 @@
/*!
* Vue.js v2.1.9
* Vue.js v2.1.10
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
@ -3710,7 +3710,7 @@ Object.defineProperty(Vue$3.prototype, '$isServer', {
get: isServerRendering
});
Vue$3.version = '2.1.9';
Vue$3.version = '2.1.10';
/* */
@ -5951,7 +5951,9 @@ var Transition = {
var id = "__transition-" + (this._uid) + "-";
var key = child.key = child.key == null
? id + child.tag
: child.key.indexOf(id) === 0 ? child.key : id + child.key;
: isPrimitive(child.key)
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
: child.key;
var data = (child.data || (child.data = {})).transition = extractTransitionData(this);
var oldRawChild = this._vnode;
var oldChild = getRealChild(oldRawChild);

8
dist/vue.js

@ -1,5 +1,5 @@
/*!
* Vue.js v2.1.9
* Vue.js v2.1.10
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
@ -3708,7 +3708,7 @@ Object.defineProperty(Vue$3.prototype, '$isServer', {
get: isServerRendering
});
Vue$3.version = '2.1.9';
Vue$3.version = '2.1.10';
/* */
@ -5949,7 +5949,9 @@ var Transition = {
var id = "__transition-" + (this._uid) + "-";
var key = child.key = child.key == null
? id + child.tag
: child.key.indexOf(id) === 0 ? child.key : id + child.key;
: isPrimitive(child.key)
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
: child.key;
var data = (child.data || (child.data = {})).transition = extractTransitionData(this);
var oldRawChild = this._vnode;
var oldChild = getRealChild(oldRawChild);

6
dist/vue.min.js

File diff suppressed because one or more lines are too long

8
dist/vue.runtime.common.js

@ -1,5 +1,5 @@
/*!
* Vue.js v2.1.9
* Vue.js v2.1.10
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
@ -3710,7 +3710,7 @@ Object.defineProperty(Vue$2.prototype, '$isServer', {
get: isServerRendering
});
Vue$2.version = '2.1.9';
Vue$2.version = '2.1.10';
/* */
@ -5951,7 +5951,9 @@ var Transition = {
var id = "__transition-" + (this._uid) + "-";
var key = child.key = child.key == null
? id + child.tag
: child.key.indexOf(id) === 0 ? child.key : id + child.key;
: isPrimitive(child.key)
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
: child.key;
var data = (child.data || (child.data = {})).transition = extractTransitionData(this);
var oldRawChild = this._vnode;
var oldChild = getRealChild(oldRawChild);

8
dist/vue.runtime.js

@ -1,5 +1,5 @@
/*!
* Vue.js v2.1.9
* Vue.js v2.1.10
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
@ -3708,7 +3708,7 @@ Object.defineProperty(Vue$2.prototype, '$isServer', {
get: isServerRendering
});
Vue$2.version = '2.1.9';
Vue$2.version = '2.1.10';
/* */
@ -5949,7 +5949,9 @@ var Transition = {
var id = "__transition-" + (this._uid) + "-";
var key = child.key = child.key == null
? id + child.tag
: child.key.indexOf(id) === 0 ? child.key : id + child.key;
: isPrimitive(child.key)
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
: child.key;
var data = (child.data || (child.data = {})).transition = extractTransitionData(this);
var oldRawChild = this._vnode;
var oldChild = getRealChild(oldRawChild);

4
dist/vue.runtime.min.js

File diff suppressed because one or more lines are too long

2
packages/vue-server-renderer/package.json

@ -1,6 +1,6 @@
{
"name": "vue-server-renderer",
"version": "2.1.9",
"version": "2.1.10",
"description": "server renderer for Vue 2.0",
"main": "index.js",
"repository": {

2
packages/vue-template-compiler/package.json

@ -1,6 +1,6 @@
{
"name": "vue-template-compiler",
"version": "2.1.9",
"version": "2.1.10",
"description": "template compiler for Vue 2.0",
"main": "index.js",
"repository": {

Loading…
Cancel
Save