mirror of
https://gitee.com/vuejs/vue.git
synced 2024-11-29 18:47:39 +08:00
build: build 2.5.6
This commit is contained in:
parent
59dea37403
commit
7f31ec9ab7
32
dist/vue.common.js
vendored
32
dist/vue.common.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.5.5
|
||||
* Vue.js v2.5.6
|
||||
* (c) 2014-2017 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -4968,7 +4968,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
|
||||
}
|
||||
});
|
||||
|
||||
Vue$3.version = '2.5.5';
|
||||
Vue$3.version = '2.5.6';
|
||||
|
||||
/* */
|
||||
|
||||
@ -6675,7 +6675,6 @@ function model (
|
||||
var modifiers = dir.modifiers;
|
||||
var tag = el.tag;
|
||||
var type = el.attrsMap.type;
|
||||
var attrsMap = el.attrsMap;
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
// inputs with type="file" are read only and setting the input's
|
||||
@ -6686,20 +6685,6 @@ function model (
|
||||
"File inputs are read only. Use a v-on:change listener instead."
|
||||
);
|
||||
}
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (
|
||||
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
|
||||
type !== 'checkbox' &&
|
||||
type !== 'radio' &&
|
||||
tag !== 'select'
|
||||
) {
|
||||
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$1(
|
||||
vBindValue + " conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (el.component) {
|
||||
@ -6797,6 +6782,19 @@ function genDefaultModel (
|
||||
modifiers
|
||||
) {
|
||||
var type = el.attrsMap.type;
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
|
||||
if (value$1) {
|
||||
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$1(
|
||||
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
var ref = modifiers || {};
|
||||
var lazy = ref.lazy;
|
||||
var number = ref.number;
|
||||
|
32
dist/vue.esm.js
vendored
32
dist/vue.esm.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.5.5
|
||||
* Vue.js v2.5.6
|
||||
* (c) 2014-2017 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -4966,7 +4966,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
|
||||
}
|
||||
});
|
||||
|
||||
Vue$3.version = '2.5.5';
|
||||
Vue$3.version = '2.5.6';
|
||||
|
||||
/* */
|
||||
|
||||
@ -6673,7 +6673,6 @@ function model (
|
||||
var modifiers = dir.modifiers;
|
||||
var tag = el.tag;
|
||||
var type = el.attrsMap.type;
|
||||
var attrsMap = el.attrsMap;
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
// inputs with type="file" are read only and setting the input's
|
||||
@ -6684,20 +6683,6 @@ function model (
|
||||
"File inputs are read only. Use a v-on:change listener instead."
|
||||
);
|
||||
}
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (
|
||||
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
|
||||
type !== 'checkbox' &&
|
||||
type !== 'radio' &&
|
||||
tag !== 'select'
|
||||
) {
|
||||
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$1(
|
||||
vBindValue + " conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (el.component) {
|
||||
@ -6795,6 +6780,19 @@ function genDefaultModel (
|
||||
modifiers
|
||||
) {
|
||||
var type = el.attrsMap.type;
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
|
||||
if (value$1) {
|
||||
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$1(
|
||||
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
var ref = modifiers || {};
|
||||
var lazy = ref.lazy;
|
||||
var number = ref.number;
|
||||
|
32
dist/vue.js
vendored
32
dist/vue.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.5.5
|
||||
* Vue.js v2.5.6
|
||||
* (c) 2014-2017 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -4957,7 +4957,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
|
||||
}
|
||||
});
|
||||
|
||||
Vue$3.version = '2.5.5';
|
||||
Vue$3.version = '2.5.6';
|
||||
|
||||
/* */
|
||||
|
||||
@ -6664,7 +6664,6 @@ function model (
|
||||
var modifiers = dir.modifiers;
|
||||
var tag = el.tag;
|
||||
var type = el.attrsMap.type;
|
||||
var attrsMap = el.attrsMap;
|
||||
|
||||
{
|
||||
// inputs with type="file" are read only and setting the input's
|
||||
@ -6675,20 +6674,6 @@ function model (
|
||||
"File inputs are read only. Use a v-on:change listener instead."
|
||||
);
|
||||
}
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (
|
||||
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
|
||||
type !== 'checkbox' &&
|
||||
type !== 'radio' &&
|
||||
tag !== 'select'
|
||||
) {
|
||||
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$1(
|
||||
vBindValue + " conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (el.component) {
|
||||
@ -6786,6 +6771,19 @@ function genDefaultModel (
|
||||
modifiers
|
||||
) {
|
||||
var type = el.attrsMap.type;
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
{
|
||||
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
|
||||
if (value$1) {
|
||||
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$1(
|
||||
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
var ref = modifiers || {};
|
||||
var lazy = ref.lazy;
|
||||
var number = ref.number;
|
||||
|
4
dist/vue.min.js
vendored
4
dist/vue.min.js
vendored
File diff suppressed because one or more lines are too long
4
dist/vue.runtime.common.js
vendored
4
dist/vue.runtime.common.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.5.5
|
||||
* Vue.js v2.5.6
|
||||
* (c) 2014-2017 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -4964,7 +4964,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
|
||||
}
|
||||
});
|
||||
|
||||
Vue$3.version = '2.5.5';
|
||||
Vue$3.version = '2.5.6';
|
||||
|
||||
/* */
|
||||
|
||||
|
4
dist/vue.runtime.esm.js
vendored
4
dist/vue.runtime.esm.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.5.5
|
||||
* Vue.js v2.5.6
|
||||
* (c) 2014-2017 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -4962,7 +4962,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
|
||||
}
|
||||
});
|
||||
|
||||
Vue$3.version = '2.5.5';
|
||||
Vue$3.version = '2.5.6';
|
||||
|
||||
/* */
|
||||
|
||||
|
4
dist/vue.runtime.js
vendored
4
dist/vue.runtime.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.5.5
|
||||
* Vue.js v2.5.6
|
||||
* (c) 2014-2017 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -4953,7 +4953,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
|
||||
}
|
||||
});
|
||||
|
||||
Vue$3.version = '2.5.5';
|
||||
Vue$3.version = '2.5.6';
|
||||
|
||||
/* */
|
||||
|
||||
|
4
dist/vue.runtime.min.js
vendored
4
dist/vue.runtime.min.js
vendored
File diff suppressed because one or more lines are too long
@ -4316,7 +4316,6 @@ function model$2 (
|
||||
var modifiers = dir.modifiers;
|
||||
var tag = el.tag;
|
||||
var type = el.attrsMap.type;
|
||||
var attrsMap = el.attrsMap;
|
||||
|
||||
{
|
||||
// inputs with type="file" are read only and setting the input's
|
||||
@ -4327,20 +4326,6 @@ function model$2 (
|
||||
"File inputs are read only. Use a v-on:change listener instead."
|
||||
);
|
||||
}
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (
|
||||
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
|
||||
type !== 'checkbox' &&
|
||||
type !== 'radio' &&
|
||||
tag !== 'select'
|
||||
) {
|
||||
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$2(
|
||||
vBindValue + " conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (el.component) {
|
||||
@ -4438,6 +4423,19 @@ function genDefaultModel (
|
||||
modifiers
|
||||
) {
|
||||
var type = el.attrsMap.type;
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
{
|
||||
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
|
||||
if (value$1) {
|
||||
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$2(
|
||||
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
var ref = modifiers || {};
|
||||
var lazy = ref.lazy;
|
||||
var number = ref.number;
|
||||
|
@ -4055,7 +4055,6 @@ function model$2 (
|
||||
var modifiers = dir.modifiers;
|
||||
var tag = el.tag;
|
||||
var type = el.attrsMap.type;
|
||||
var attrsMap = el.attrsMap;
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
// inputs with type="file" are read only and setting the input's
|
||||
@ -4066,20 +4065,6 @@ function model$2 (
|
||||
"File inputs are read only. Use a v-on:change listener instead."
|
||||
);
|
||||
}
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (
|
||||
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
|
||||
type !== 'checkbox' &&
|
||||
type !== 'radio' &&
|
||||
tag !== 'select'
|
||||
) {
|
||||
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$2(
|
||||
vBindValue + " conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (el.component) {
|
||||
@ -4177,6 +4162,19 @@ function genDefaultModel (
|
||||
modifiers
|
||||
) {
|
||||
var type = el.attrsMap.type;
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
|
||||
if (value$1) {
|
||||
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$2(
|
||||
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
var ref = modifiers || {};
|
||||
var lazy = ref.lazy;
|
||||
var number = ref.number;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vue-server-renderer",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"description": "server renderer for Vue 2.0",
|
||||
"main": "index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
@ -3386,7 +3386,6 @@ function model$1 (
|
||||
var modifiers = dir.modifiers;
|
||||
var tag = el.tag;
|
||||
var type = el.attrsMap.type;
|
||||
var attrsMap = el.attrsMap;
|
||||
|
||||
{
|
||||
// inputs with type="file" are read only and setting the input's
|
||||
@ -3397,20 +3396,6 @@ function model$1 (
|
||||
"File inputs are read only. Use a v-on:change listener instead."
|
||||
);
|
||||
}
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (
|
||||
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
|
||||
type !== 'checkbox' &&
|
||||
type !== 'radio' &&
|
||||
tag !== 'select'
|
||||
) {
|
||||
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$2(
|
||||
vBindValue + " conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (el.component) {
|
||||
@ -3508,6 +3493,19 @@ function genDefaultModel (
|
||||
modifiers
|
||||
) {
|
||||
var type = el.attrsMap.type;
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
{
|
||||
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
|
||||
if (value$1) {
|
||||
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$2(
|
||||
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
var ref = modifiers || {};
|
||||
var lazy = ref.lazy;
|
||||
var number = ref.number;
|
||||
|
@ -2988,7 +2988,6 @@ function model$1 (
|
||||
var modifiers = dir.modifiers;
|
||||
var tag = el.tag;
|
||||
var type = el.attrsMap.type;
|
||||
var attrsMap = el.attrsMap;
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
// inputs with type="file" are read only and setting the input's
|
||||
@ -2999,20 +2998,6 @@ function model$1 (
|
||||
"File inputs are read only. Use a v-on:change listener instead."
|
||||
);
|
||||
}
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (
|
||||
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
|
||||
type !== 'checkbox' &&
|
||||
type !== 'radio' &&
|
||||
tag !== 'select'
|
||||
) {
|
||||
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$2(
|
||||
vBindValue + " conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (el.component) {
|
||||
@ -3110,6 +3095,19 @@ function genDefaultModel (
|
||||
modifiers
|
||||
) {
|
||||
var type = el.attrsMap.type;
|
||||
|
||||
// warn if v-bind:value conflicts with v-model
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
|
||||
if (value$1) {
|
||||
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
|
||||
warn$2(
|
||||
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
|
||||
'because the latter already expands to a value binding internally'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
var ref = modifiers || {};
|
||||
var lazy = ref.lazy;
|
||||
var number = ref.number;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vue-template-compiler",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"description": "template compiler for Vue 2.0",
|
||||
"main": "index.js",
|
||||
"unpkg": "browser.js",
|
||||
|
Loading…
Reference in New Issue
Block a user