@@ -5,21 +5,21 @@ if (process.env.NODE_ENV !== 'production') {
5
5
_ . warn ( '{DEPRECATION} ' + msg )
6
6
}
7
7
8
- var newBindingSyntaxLink = ' See https://github.com/yyx990803 /vue/issues/1325 for details.'
8
+ var newBindingSyntaxLink = ' See https://github.com/vuejs /vue/issues/1325 for details.'
9
9
10
10
_ . deprecation = {
11
11
12
12
REPEAT : function ( ) {
13
13
warn (
14
14
'v-repeat will be deprecated in favor of v-for in 1.0.0. ' +
15
- 'See https://github.com/yyx990803 /vue/issues/1200 for details.'
15
+ 'See https://github.com/vuejs /vue/issues/1200 for details.'
16
16
)
17
17
} ,
18
18
19
19
ADD : function ( ) {
20
20
warn (
21
21
'$add() will be deprecated in 1.0.0. Use $set() instead. ' +
22
- 'See https://github.com/yyx990803 /vue/issues/1171 for details.'
22
+ 'See https://github.com/vuejs /vue/issues/1171 for details.'
23
23
)
24
24
} ,
25
25
@@ -40,36 +40,36 @@ if (process.env.NODE_ENV !== 'production') {
40
40
WAIT_FOR : function ( ) {
41
41
warn (
42
42
'"wait-for" will be deprecated in 1.0.0. Use `activate` hook instead. ' +
43
- 'See https://github.com/yyx990803 /vue/issues/1169 for details.'
43
+ 'See https://github.com/vuejs /vue/issues/1169 for details.'
44
44
)
45
45
} ,
46
46
47
47
STRICT_MODE : function ( type , id ) {
48
48
warn (
49
49
'Falling through to parent when resolving ' + type + ' with id "' + id +
50
50
'". Strict mode will be the default in 1.0.0. ' +
51
- 'See https://github.com/yyx990803 /vue/issues/1170 for details.'
51
+ 'See https://github.com/vuejs /vue/issues/1170 for details.'
52
52
)
53
53
} ,
54
54
55
55
CONTENT : function ( ) {
56
56
warn (
57
57
'<content> insertion points will be deprecated in in 1.0.0. in favor of <slot>. ' +
58
- 'See https://github.com/yyx990803 /vue/issues/1167 for details.'
58
+ 'See https://github.com/vuejs /vue/issues/1167 for details.'
59
59
)
60
60
} ,
61
61
62
62
DATA_AS_PROP : function ( ) {
63
63
warn (
64
64
'$data will no longer be usable as a prop in 1.0.0. ' +
65
- 'See https://github.com
10000
/yyx990803 /vue/issues/1198 for details.'
65
+ 'See https://github.com/vuejs /vue/issues/1198 for details.'
66
66
)
67
67
} ,
68
68
69
69
INHERIT : function ( ) {
70
70
warn (
71
71
'The "inherit" option will be deprecated in 1.0.0. ' +
72
- 'See https://github.com/yyx990803 /vue/issues/1198 for details.'
72
+ 'See https://github.com/vuejs /vue/issues/1198 for details.'
73
73
)
74
74
} ,
75
75
@@ -98,15 +98,15 @@ if (process.env.NODE_ENV !== 'production') {
98
98
warn (
99
99
'v-ref will no longer take an attribute value in 1.0.0. Use "v-ref:id" syntax ' +
100
100
'instead. Also, refs will be registered under vm.$refs instead of vm.$. ' +
101
- 'See https://github.com/yyx990803 /vue/issues/1292 for more details.'
101
+ 'See https://github.com/vuejs /vue/issues/1292 for more details.'
102
102
)
103
103
} ,
104
104
105
105
V_EL : function ( ) {
106
106
warn (
107
107
'v-el will no longer take an attribute value in 1.0.0. Use "v-el:id" syntax ' +
108
108
'instead. Also, nodes will be registered under vm.$els instead of vm.$$. ' +
109
- 'See https://github.com/yyx990803 /vue/issues/1292 for more details.'
109
+ 'See https://github.com/vuejs /vue/issues/1292 for more details.'
110
110
)
111
111
} ,
112
112
@@ -203,7 +203,7 @@ if (process.env.NODE_ENV !== 'production') {
203
203
warn (
204
204
'No need to return false in handler for event "' + event + '": events ' +
205
205
'no longer propagate beyond the first triggered handler unless the ' +
206
- 'handler explicitly returns true. See https://github.com/yyx990803 /vue/issues/1175 ' +
206
+ 'handler explicitly returns true. See https://github.com/vuejs /vue/issues/1175 ' +
207
207
'for more details.'
208
208
)
209
209
} ,
@@ -218,7 +218,7 @@ if (process.env.NODE_ENV !== 'production') {
218
218
SELECT_OPTIONS : function ( ) {
219
219
warn (
220
220
'The "options" param for <select v-model> will be deprecated in 1.0.0. ' +
221
- 'Use v-for to render the options. See https://github.com/yyx990803 /vue/issues/1229 ' +
221
+ 'Use v-for to render the options. See https://github.com/vuejs /vue/issues/1229 ' +
222
222
'for more details.'
223
223
)
224
224
} ,
@@ -249,7 +249,7 @@ if (process.env.NODE_ENV !== 'production') {
249
249
V_COMPONENT : function ( ) {
250
250
warn (
251
251
'v-component will be deprecated in 1.0.0. Use "is" attribute instead. ' +
252
- 'See https://github.com/yyx990803 /vue/issues/1278 for more details.'
252
+ 'See https://github.com/vuejs /vue/issues/1278 for more details.'
253
253
)
254
254
} ,
255
255
0 commit comments