Skip to content

Commit c732135

Browse files
committed
[build] 3.0.1
1 parent eea2d82 commit c732135

File tree

4 files changed

+62
-29
lines changed

4 files changed

+62
-29
lines changed

dist/vue-router.common.js

+20-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* vue-router v3.0.0
2+
* vue-router v3.0.1
33
* (c) 2017 Evan You
44
* @license MIT
55
*/
@@ -96,13 +96,17 @@ var View = {
9696
};
9797

9898
// resolve props
99-
data.props = resolveProps(route, matched.props && matched.props[name]);
100-
data.attrs = {};
101-
102-
for (var key in data.props) {
103-
if (!('props' in component) || !(key in component.props)) {
104-
data.attrs[key] = data.props[key];
105-
delete data.props[key];
99+
var propsToPass = data.props = resolveProps(route, matched.props && matched.props[name]);
100+
if (propsToPass) {
101+
// clone to prevent mutation
102+
propsToPass = data.props = extend({}, propsToPass);
103+
// pass non-declared props as attrs
104+
var attrs = data.attrs = data.attrs || {};
105+
for (var key in propsToPass) {
106+
if (!component.props || !(key in component.props)) {
107+
attrs[key] = propsToPass[key];
108+
delete propsToPass[key];
109+
}
106110
}
107111
}
108112

@@ -131,6 +135,13 @@ function resolveProps (route, config) {
131135
}
132136
}
133137

138+
function extend (to, from) {
139+
for (var key in from) {
140+
to[key] = from[key];
141+
}
142+
return to
143+
}
144+
134145
/* */
135146

136147
var encodeReserveRE = /[!'()*]/g;
@@ -2605,7 +2616,7 @@ function createHref (base, fullPath, mode) {
26052616
}
26062617

26072618
VueRouter.install = install;
2608-
VueRouter.version = '3.0.0';
2619+
VueRouter.version = '3.0.1';
26092620

26102621
if (inBrowser && window.Vue) {
26112622
window.Vue.use(VueRouter);

dist/vue-router.esm.js

+20-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* vue-router v3.0.0
2+
* vue-router v3.0.1
33
* (c) 2017 Evan You
44
* @license MIT
55
*/
@@ -94,13 +94,17 @@ var View = {
9494
};
9595

9696
// resolve props
97-
data.props = resolveProps(route, matched.props && matched.props[name]);
98-
data.attrs = {};
99-
100-
for (var key in data.props) {
101-
if (!('props' in component) || !(key in component.props)) {
102-
data.attrs[key] = data.props[key];
103-
delete data.props[key];
97+
var propsToPass = data.props = resolveProps(route, matched.props && matched.props[name]);
98+
if (propsToPass) {
99+
// clone to prevent mutation
100+
propsToPass = data.props = extend({}, propsToPass);
101+
// pass non-declared props as attrs
102+
var attrs = data.attrs = data.attrs || {};
103+
for (var key in propsToPass) {
104+
if (!component.props || !(key in component.props)) {
105+
attrs[key] = propsToPass[key];
106+
delete propsToPass[key];
107+
}
104108
}
105109
}
106110

@@ -129,6 +133,13 @@ function resolveProps (route, config) {
129133
}
130134
}
131135

136+
function extend (to, from) {
137+
for (var key in from) {
138+
to[key] = from[key];
139+
}
140+
return to
141+
}
142+
132143
/* */
133144

134145
var encodeReserveRE = /[!'()*]/g;
@@ -2603,7 +2614,7 @@ function createHref (base, fullPath, mode) {
26032614
}
26042615

26052616
VueRouter.install = install;
2606-
VueRouter.version = '3.0.0';
2617+
VueRouter.version = '3.0.1';
26072618

26082619
if (inBrowser && window.Vue) {
26092620
window.Vue.use(VueRouter);

dist/vue-router.js

+20-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* vue-router v3.0.0
2+
* vue-router v3.0.1
33
* (c) 2017 Evan You
44
* @license MIT
55
*/
@@ -100,13 +100,17 @@ var View = {
100100
};
101101

102102
// resolve props
103-
data.props = resolveProps(route, matched.props && matched.props[name]);
104-
data.attrs = {};
105-
106-
for (var key in data.props) {
107-
if (!('props' in component) || !(key in component.props)) {
108-
data.attrs[key] = data.props[key];
109-
delete data.props[key];
103+
var propsToPass = data.props = resolveProps(route, matched.props && matched.props[name]);
104+
if (propsToPass) {
105+
// clone to prevent mutation
106+
propsToPass = data.props = extend({}, propsToPass);
107+
// pass non-declared props as attrs
108+
var attrs = data.attrs = data.attrs || {};
109+
for (var key in propsToPass) {
110+
if (!component.props || !(key in component.props)) {
111+
attrs[key] = propsToPass[key];
112+
delete propsToPass[key];
113+
}
110114
}
111115
}
112116

@@ -135,6 +139,13 @@ function resolveProps (route, config) {
135139
}
136140
}
137141

142+
function extend (to, from) {
143+
for (var key in from) {
144+
to[key] = from[key];
145+
}
146+
return to
147+
}
148+
138149
/* */
139150

140151
var encodeReserveRE = /[!'()*]/g;
@@ -2609,7 +2620,7 @@ function createHref (base, fullPath, mode) {
26092620
}
26102621

26112622
VueRouter.install = install;
2612-
VueRouter.version = '3.0.0';
2623+
VueRouter.version = '3.0.1';
26132624

26142625
if (inBrowser && window.Vue) {
26152626
window.Vue.use(VueRouter);

0 commit comments

Comments
 (0)