File tree 9 files changed +13
-13
lines changed
9 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ var app = new Vue({
55
55
} ,
56
56
57
57
// computed properties
58
- // https://vuejs.org/guide/computed.html
58
+ // https://v2. vuejs.org/v2 /guide/computed.html
59
59
computed : {
60
60
filteredTodos : function ( ) {
61
61
return filters [ this . visibility ] ( this . todos )
@@ -129,7 +129,7 @@ var app = new Vue({
129
129
130
130
// a custom directive to wait for the DOM to be updated
131
131
// before focusing on the input field.
132
- // https://vuejs.org/guide/custom-directive.html
132
+ // https://v2. vuejs.org/v2 /guide/custom-directive.html
133
133
directives : {
134
134
'todo-focus' : function ( el , binding ) {
135
135
if ( binding . value ) {
Original file line number Diff line number Diff line change @@ -5157,7 +5157,7 @@ function genFor (
5157
5157
state . warn (
5158
5158
"<" + ( el . tag ) + " v-for=\"" + alias + " in " + exp + "\">: component lists rendered with " +
5159
5159
"v-for should have explicit keys. " +
5160
- "See https://vuejs.org/guide/list.html#key for more info." ,
5160
+ "See https://v2. vuejs.org/v2/ guide/list.html#Maintaining-State for more info." ,
5161
5161
el . rawAttrsMap [ 'v-for' ] ,
5162
5162
true /* tip */
5163
5163
) ;
Original file line number Diff line number Diff line change 4444
4444
state . warn (
4445
4445
"<" + ( el . tag ) + " v-for=\"" + alias + " in " + exp + "\">: component lists rendered with " +
4446
4446
"v-for should have explicit keys. " +
4447
- "See https://vuejs.org/guide/list.html#key for more info." ,
4447
+ "See https://v2. vuejs.org/v2/ guide/list.html#Maintaining-State for more info." ,
4448
4448
el . rawAttrsMap [ 'v-for' ] ,
4449
4449
true /* tip */
4450
4450
) ;
Original file line number Diff line number Diff line change @@ -3489,7 +3489,7 @@ function genFor (
3489
3489
state . warn (
3490
3490
"<" + ( el . tag ) + " v-for=\"" + alias + " in " + exp + "\">: component lists rendered with " +
3491
3491
"v-for should have explicit keys. " +
3492
- "See https://vuejs.org/guide/list.html#key for more info." ,
3492
+ "See https://v2. vuejs.org/v2/ guide/list.html#Maintaining-State for more info." ,
3493
3493
el . rawAttrsMap [ 'v-for' ] ,
3494
3494
true /* tip */
3495
3495
) ;
Original file line number Diff line number Diff line change @@ -2010,7 +2010,7 @@ if (process.env.NODE_ENV !== 'production') {
2010
2010
'referenced during render. Make sure that this property is reactive, ' +
2011
2011
'either in the data option, or for class-based components, by ' +
2012
2012
'initializing the property. ' +
2013
- 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties. ' ,
2013
+ 'See: https://v2. vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties' ,
2014
2014
target
2015
2015
) ;
2016
2016
} ;
@@ -2020,7 +2020,7 @@ if (process.env.NODE_ENV !== 'production') {
2020
2020
"Property \"" + key + "\" must be accessed with \"$data." + key + "\" because " +
2021
2021
'properties starting with "$" or "_" are not proxied in the Vue instance to ' +
2022
2022
'prevent conflicts with Vue internals. ' +
2023
- 'See: https://vuejs.org/v2/api/#data' ,
2023
+ 'See: https://v2. vuejs.org/v2/api/#data' ,
2024
2024
target
2025
2025
) ;
2026
2026
} ;
@@ -4900,7 +4900,7 @@ function initData (vm) {
4900
4900
data = { } ;
4901
4901
process . env . NODE_ENV !== 'production' && warn (
4902
4902
'data functions should return an object:\n' +
4903
- 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function' ,
4903
+ 'https://v2. vuejs.org/v2/guide/components.html#data-Must-Be-a-Function' ,
4904
4904
vm
4905
4905
) ;
4906
4906
}
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ export function genFor (
204
204
state . warn (
205
205
`<${ el . tag } v-for="${ alias } in ${ exp } ">: component lists rendered with ` +
206
206
`v-for should have explicit keys. ` +
207
- `See https://vuejs.org/guide/list.html#key for more info.` ,
207
+ `See https://v2. vuejs.org/v2/ guide/list.html#Maintaining-State for more info.` ,
208
208
el . rawAttrsMap [ 'v-for' ] ,
209
209
true /* tip */
210
210
)
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ if (process.env.NODE_ENV !== 'production') {
19
19
'referenced during render. Make sure that this property is reactive, ' +
20
20
'either in the data option, or for class-based components, by ' +
21
21
'initializing the property. ' +
22
- 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties. ' ,
22
+ 'See: https://v2. vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties' ,
23
23
target
24
24
)
25
25
}
@@ -29,7 +29,7 @@ if (process.env.NODE_ENV !== 'production') {
29
29
`Property "${ key } " must be accessed with "$data.${ key } " because ` +
30
30
'properties starting with "$" or "_" are not proxied in the Vue instance to ' +
31
31
'prevent conflicts with Vue internals. ' +
32
- 'See: https://vuejs.org/v2/api/#data' ,
32
+ 'See: https://v2. vuejs.org/v2/api/#data' ,
33
33
target
34
34
)
35
35
}
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ function initData (vm: Component) {
119
119
data = { }
120
120
process . env . NODE_ENV !== 'production' && warn (
121
121
'data functions should return an object:\n' +
122
- 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function' ,
122
+ 'https://v2. vuejs.org/v2/guide/components.html#data-Must-Be-a-Function' ,
123
123
vm
124
124
)
125
125
}
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ if (inBrowser) {
67
67
console [ console . info ? 'info' : 'log' ] (
68
68
`You are running Vue in development mode.\n` +
69
69
`Make sure to turn on production mode when deploying for production.\n` +
70
- `See more tips at https://vuejs.org/guide/deployment.html`
70
+ `See more tips at https://v2. vuejs.org/v2 /guide/deployment.html`
71
71
)
72
72
}
73
73
} , 0 )
You can’t perform that action at this time.
0 commit comments