如何在vue 2.0中实现此代码?

时间:2018-03-24 10:26:15

标签: vue.js

<a href="http://en.wikipedia.org/?title={{obj.title}}" target="_blank"></a>

此代码可以在vue 1.0中运行,但在vue 2.0中它返回错误

<a v-bind:href="http://en.wikipedia.org/?title=obj.title" target="_blank"></a>

这也行不通,我该如何修改代码?

1 个答案:

答案 0 :(得分:2)

v-bind:href=" 'http://en.wikipedia.org/?title=' + obj.title "

基本上,v-bind中提供的内容必须返回有效的Javascript值。在这种情况下,它是字符串。或者它也可以是整数,布尔,函数,数组,对象......