8000 update deprecation warning links · Aphasia-GitHub/vue@245986d · GitHub
[go: up one dir, main page]

Skip to content

Commit 245986d

Browse files
committed
update deprecation warning links
1 parent fc3c0da commit 245986d

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/deprecations.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ if (process.env.NODE_ENV !== 'production') {
55
_.warn('{DEPRECATION} ' + msg)
66
}
77

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.'
99

1010
_.deprecation = {
1111

1212
REPEAT: function () {
1313
warn(
1414
'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.'
1616
)
1717
},
1818

1919
ADD: function () {
2020
warn(
2121
'$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.'
2323
)
2424
},
2525

@@ -40,36 +40,36 @@ if (process.env.NODE_ENV !== 'production') {
4040
WAIT_FOR: function () {
4141
warn(
4242
'"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.'
4444
)
4545
},
4646

4747
STRICT_MODE: function (type, id) {
4848
warn(
4949
'Falling through to parent when resolving ' + type + ' with id "' + id +
5050
'". 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.'
5252
)
5353
},
5454

5555
CONTENT: function () {
5656
warn(
5757
'<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.'
5959
)
6060
},
6161

6262
DATA_AS_PROP: function () {
6363
warn(
6464
'$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.'
6666
)
6767
},
6868

6969
INHERIT: function () {
7070
warn(
7171
'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.'
7373
)
7474
},
7575

@@ -98,15 +98,15 @@ if (process.env.NODE_ENV !== 'production') {
9898
warn(
9999
'v-ref will no longer take an attribute value in 1.0.0. Use "v-ref:id" syntax ' +
100100
'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.'
102102
)
103103
},
104104

105105
V_EL: function () {
106106
warn(
107107
'v-el will no longer take an attribute value in 1.0.0. Use "v-el:id" syntax ' +
108108
'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.'
110110
)
111111
},
112112

@@ -203,7 +203,7 @@ if (process.env.NODE_ENV !== 'production') {
203203
warn(
204204
'No need to return false in handler for event "' + event + '": events ' +
205205
'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 ' +
207207
'for more details.'
208208
)
209209
},
@@ -218,7 +218,7 @@ if (process.env.NODE_ENV !== 'production') {
218218
SELECT_OPTIONS: function () {
219219
warn(
220220
'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 ' +
222222
'for more details.'
223223
)
224224
},
@@ -249,7 +249,7 @@ if (process.env.NODE_ENV !== 'production') {
249249
V_COMPONENT: function () {
250250
warn(
251251
'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.'
253253
)
254254
},
255255

0 commit comments

Comments
 (0)
0