vuejs634 Vue warn Error compiling templatelay-value= cityname Interpolation inside attributes has been removed Use v-bind or the colon shorthand instead For example instead of div id= val use div id
这个警告是因为在模板中使用了插值表达式(即双括号语法)来绑定属性。在Vue 2.0中,插值表达式不能用在属性上,而是应该使用v-bind指令或简写的冒号来绑定属性。例如,应该将这行代码:
改为:
这样就不会再收到这个警告了。
原文地址: https://www.cveoy.top/t/topic/bd29 著作权归作者所有。请勿转载和采集!