@@ -76,24 +76,23 @@ if (process.env.NODE_ENV !== 'production') {
76
76
V_TRANSITION : function ( ) {
77
77
warn (
78
78
'v-transition will no longer be a directive in 1.0.0; It will become a ' +
79
- 'special attribute without the prefix. Use "transition" instead.' +
80
- newBindingSyntaxLink
79
+ 'special attribute without the prefix. Use "transition" instead.'
81
80
)
82
81
} ,
83
82
84
83
V_REF : function ( ) {
85
84
warn (
86
85
'v-ref will no longer take an attribute value in 1.0.0. Use "v-ref:id" syntax ' +
87
- 'instead. Also, refs will be registered under vm.$refs instead of vm.$.' +
88
- newBindingSyntaxLink
86
+ 'instead. Also, refs will be registered under vm.$refs instead of vm.$. ' +
87
+ 'See https://github.com/yyx990803/vue/issues/1292 for more details.'
89
88
)
90
89
} ,
91
90
92
91
V_EL : function ( ) {
93
92
warn (
94
93
'v-el will no longer take an attribute value in 1.0.0. Use "v-el:id" syntax ' +
95
- 'instead. Also, nodes will be registered under vm.$els instead of vm.$$.' +
96
- newBindingSyntaxLink
94
+ 'instead. Also, nodes will be registered under vm.$els instead of vm.$$. ' +
95
+ 'See https://github.com/yyx990803/vue/issues/1292 for more details.'
97
96
)
98
97
} ,
99
98
@@ -167,15 +166,15 @@ if (process.env.NODE_ENV !== 'production') {
167
166
168
167
REF_IN_CHILD : function ( ) {
169
168
warn (
170
- 'v-ref or ref can no longer be used on a component root in its own ' +
169
+ 'v-ref can no longer be used on a component root in its own ' +
171
170
'template in 1.0.0. Use it in the parent template instead.'
172
171
)
173
172
} ,
174
173
175
174
KEY_FILTER : function ( ) {
176
175
warn (
177
176
'The "key" filter will be deprecated in 1.0.0. Use the new ' +
178
- 'on- keyup- key="handler" syntax instead.'
177
+ 'v-on: keyup. key="handler" syntax instead.'
179
178
)
180
179
} ,
181
180
@@ -214,7 +213,8 @@ if (process.env.NODE_ENV !== 'production') {
214
213
LITERAL : function ( ) {
215
214
warn (
216
215
'It is no longer necessary to declare literal directives in 1.0.0. Just ' +
217
- 'use the new hash-equal syntax (v-dir#="string") to indicate a literal value.'
216
+ 'add the ".literal" modifier at the end (v-dir.literal="string") to ' +
217
+ 'pass a literal value.'
218
218
)
219
219
} ,
220
220
@@ -227,7 +227,8 @@ if (process.env.NODE_ENV !== 'production') {
227
227
228
228
V_COMPONENT : function ( ) {
229
229
warn (
230
- 'v-component will be deprecated in 1.0.0. Use "is" attribute instead.'
230
+ 'v-component will be deprecated in 1.0.0. Use "is" attribute instead. ' +
231
+ 'See https://github.com/yyx990803/vue/issues/1278 for more details.'
231
232
)
232
233
}
233
234
0 commit comments