Skip to content

Fix some URLs in warn messages which link to v2 doc site #12653

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/todomvc/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var app = new Vue({
},

// computed properties
// https://vuejs.org/guide/computed.html
// https://v2.vuejs.org/v2/guide/computed.html
computed: {
filteredTodos: function () {
return filters[this.visibility](this.todos)
Expand Down Expand Up @@ -129,7 +129,7 @@ var app = new Vue({

// a custom directive to wait for the DOM to be updated
// before focusing on the input field.
// https://vuejs.org/guide/custom-directive.html
// https://v2.vuejs.org/v2/guide/custom-directive.html
directives: {
'todo-focus': function (el, binding) {
if (binding.value) {
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-server-renderer/build.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -5157,7 +5157,7 @@ function genFor (
state.warn(
"<" + (el.tag) + " v-for=\"" + alias + " in " + exp + "\">: component lists rendered with " +
"v-for should have explicit keys. " +
"See https://vuejs.org/guide/list.html#key for more info.",
"See https://v2.vuejs.org/v2/guide/list.html#Maintaining-State for more info.",
el.rawAttrsMap['v-for'],
true /* tip */
);
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-template-compiler/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -4444,7 +4444,7 @@
state.warn(
"<" + (el.tag) + " v-for=\"" + alias + " in " + exp + "\">: component lists rendered with " +
"v-for should have explicit keys. " +
"See https://vuejs.org/guide/list.html#key for more info.",
"See https://v2.vuejs.org/v2/guide/list.html#Maintaining-State for more info.",
el.rawAttrsMap['v-for'],
true /* tip */
);
Expand Down
2 changes: 1 addition & 1 deletion packages/weex-template-compiler/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3489,7 +3489,7 @@ function genFor (
state.warn(
"<" + (el.tag) + " v-for=\"" + alias + " in " + exp + "\">: component lists rendered with " +
"v-for should have explicit keys. " +
"See https://vuejs.org/guide/list.html#key for more info.",
"See https://v2.vuejs.org/v2/guide/list.html#Maintaining-State for more info.",
el.rawAttrsMap['v-for'],
true /* tip */
);
Expand Down
6 changes: 3 additions & 3 deletions packages/weex-vue-framework/factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -2010,7 +2010,7 @@ if (process.env.NODE_ENV !== 'production') {
'referenced during render. Make sure that this property is reactive, ' +
'either in the data option, or for class-based components, by ' +
'initializing the property. ' +
'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',
'See: https://v2.vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties',
target
);
};
Expand All @@ -2020,7 +2020,7 @@ if (process.env.NODE_ENV !== 'production') {
"Property \"" + key + "\" must be accessed with \"$data." + key + "\" because " +
'properties starting with "$" or "_" are not proxied in the Vue instance to ' +
'prevent conflicts with Vue internals. ' +
'See: https://vuejs.org/v2/api/#data',
'See: https://v2.vuejs.org/v2/api/#data',
target
);
};
Expand Down Expand Up @@ -4900,7 +4900,7 @@ function initData (vm) {
data = {};
process.env.NODE_ENV !== 'production' && warn(
'data functions should return an object:\n' +
'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',
'https://v2.vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',
vm
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/codegen/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export function genFor (
state.warn(
`<${el.tag} v-for="${alias} in ${exp}">: component lists rendered with ` +
`v-for should have explicit keys. ` +
`See https://vuejs.org/guide/list.html#key for more info.`,
`See https://v2.vuejs.org/v2/guide/list.html#Maintaining-State for more info.`,
el.rawAttrsMap['v-for'],
true /* tip */
)
Expand Down
4 changes: 2 additions & 2 deletions src/core/instance/proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if (process.env.NODE_ENV !== 'production') {
'referenced during render. Make sure that this property is reactive, ' +
'either in the data option, or for class-based components, by ' +
'initializing the property. ' +
'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',
'See: https://v2.vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties',
target
)
}
Expand All @@ -29,7 +29,7 @@ if (process.env.NODE_ENV !== 'production') {
`Property "${key}" must be accessed with "$data.${key}" because ` +
'properties starting with "$" or "_" are not proxied in the Vue instance to ' +
'prevent conflicts with Vue internals. ' +
'See: https://vuejs.org/v2/api/#data',
'See: https://v2.vuejs.org/v2/api/#data',
target
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/instance/state.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function initData (vm: Component) {
data = {}
process.env.NODE_ENV !== 'production' && warn(
'data functions should return an object:\n' +
'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',
'https://v2.vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',
vm
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/platforms/web/runtime/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ if (inBrowser) {
console[console.info ? 'info' : 'log'](
`You are running Vue in development mode.\n` +
`Make sure to turn on production mode when deploying for production.\n` +
`See more tips at https://vuejs.org/guide/deployment.html`
`See more tips at https://v2.vuejs.org/v2/guide/deployment.html`
)
}
}, 0)
Expand Down