如何在Vue Native中将数据传递到按钮?

时间:2019-03-27 10:19:31

标签: vue.js native

我尝试为每个按钮传递一个循环浏览的标题。我有坚强的价值,我无法获得真正的价值。

我尝试通过以将这样的变量传递给title标签title

   <view v-for="(post, index) in posts" :key="index">
          <button
          :title="post.name"
          color="#841584"
          />
      </view>

结果,在我的按钮中,我有“ post.name”,而我想要循环的真实值。

1 个答案:

答案 0 :(得分:0)

如果您希望从for循环中绑定按钮名称 您可以像这样绑定它

<button :title="post.name"
          color="#841584">{{post.name}}</button>