uniapp属性插值报错Interpolation inside attributes has been removed. Use v-bind or the colon shorthand instead.

Solution:

 

Because vue 2.x does not support the use of interpolation for the attribute {} {} assignment manner, so to use v-bind command (or simply ":") specify attributes.

  • v-bind command

  v-bind:id="item.id"

  • v-bind short instructions:
  :id="item.id"

Guess you like

Origin www.cnblogs.com/XiaoYEBLog/p/11546343.html