Skip to content

Commit 9e83dd3

Browse files
committedJan 26, 2021
build: bundle 3.5.1
1 parent b7a31b9 commit 9e83dd3

6 files changed

+20
-20
lines changed
 

‎dist/vue-router.common.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-router v3.5.0
2+
* vue-router v3.5.1
33
* (c) 2021 Evan You
44
* @license MIT
55
*/
@@ -1184,14 +1184,14 @@ var Link = {
11841184
}
11851185

11861186
if (process.env.NODE_ENV !== 'production') {
1187-
if (this.tag && !warnedTagProp) {
1187+
if ('tag' in this.$options.propsData && !warnedTagProp) {
11881188
warn(
11891189
false,
11901190
"<router-link>'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link."
11911191
);
11921192
warnedTagProp = true;
11931193
}
1194-
if (this.event && !warnedEventProp) {
1194+
if ('event' in this.$options.propsData && !warnedEventProp) {
11951195
warn(
11961196
false,
11971197
"<router-link>'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link."
@@ -3128,7 +3128,7 @@ function createHref (base, fullPath, mode) {
31283128
}
31293129

31303130
VueRouter.install = install;
3131-
VueRouter.version = '3.5.0';
3131+
VueRouter.version = '3.5.1';
31323132
VueRouter.isNavigationFailure = isNavigationFailure;
31333133
VueRouter.NavigationFailureType = NavigationFailureType;
31343134
VueRouter.START_LOCATION = START;

‎dist/vue-router.esm.browser.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-router v3.5.0
2+
* vue-router v3.5.1
33
* (c) 2021 Evan You
44
* @license MIT
55
*/
@@ -1166,14 +1166,14 @@ var Link = {
11661166
}
11671167

11681168
{
1169-
if (this.tag && !warnedTagProp) {
1169+
if ('tag' in this.$options.propsData && !warnedTagProp) {
11701170
warn(
11711171
false,
11721172
`<router-link>'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.`
11731173
);
11741174
warnedTagProp = true;
11751175
}
1176-
if (this.event && !warnedEventProp) {
1176+
if ('event' in this.$options.propsData && !warnedEventProp) {
11771177
warn(
11781178
false,
11791179
`<router-link>'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.`
@@ -3095,7 +3095,7 @@ function createHref (base, fullPath, mode) {
30953095
}
30963096

30973097
VueRouter.install = install;
3098-
VueRouter.version = '3.5.0';
3098+
VueRouter.version = '3.5.1';
30993099
VueRouter.isNavigationFailure = isNavigationFailure;
31003100
VueRouter.NavigationFailureType = NavigationFailureType;
31013101
VueRouter.START_LOCATION = START;

‎dist/vue-router.esm.browser.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/vue-router.esm.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-router v3.5.0
2+
* vue-router v3.5.1
33
* (c) 2021 Evan You
44
* @license MIT
55
*/
@@ -1182,14 +1182,14 @@ var Link = {
11821182
}
11831183

11841184
if (process.env.NODE_ENV !== 'production') {
1185-
if (this.tag && !warnedTagProp) {
1185+
if ('tag' in this.$options.propsData && !warnedTagProp) {
11861186
warn(
11871187
false,
11881188
"<router-link>'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link."
11891189
);
11901190
warnedTagProp = true;
11911191
}
1192-
if (this.event && !warnedEventProp) {
1192+
if ('event' in this.$options.propsData && !warnedEventProp) {
11931193
warn(
11941194
false,
11951195
"<router-link>'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link."
@@ -3126,7 +3126,7 @@ function createHref (base, fullPath, mode) {
31263126
}
31273127

31283128
VueRouter.install = install;
3129-
VueRouter.version = '3.5.0';
3129+
VueRouter.version = '3.5.1';
31303130
VueRouter.isNavigationFailure = isNavigationFailure;
31313131
VueRouter.NavigationFailureType = NavigationFailureType;
31323132
VueRouter.START_LOCATION = START;

‎dist/vue-router.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-router v3.5.0
2+
* vue-router v3.5.1
33
* (c) 2021 Evan You
44
* @license MIT
55
*/
@@ -1188,14 +1188,14 @@
11881188
}
11891189

11901190
{
1191-
if (this.tag && !warnedTagProp) {
1191+
if ('tag' in this.$options.propsData && !warnedTagProp) {
11921192
warn(
11931193
false,
11941194
"<router-link>'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link."
11951195
);
11961196
warnedTagProp = true;
11971197
}
1198-
if (this.event && !warnedEventProp) {
1198+
if ('event' in this.$options.propsData && !warnedEventProp) {
11991199
warn(
12001200
false,
12011201
"<router-link>'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link."
@@ -3132,7 +3132,7 @@
31323132
}
31333133

31343134
VueRouter.install = install;
3135-
VueRouter.version = '3.5.0';
3135+
VueRouter.version = '3.5.1';
31363136
VueRouter.isNavigationFailure = isNavigationFailure;
31373137
VueRouter.NavigationFailureType = NavigationFailureType;
31383138
VueRouter.START_LOCATION = START;

‎dist/vue-router.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.