用输入搜索

时间:2018-01-10 17:56:51

标签: javascript html css twitter-bootstrap vue.js

我无法理解原因,但我的搜索字段无法正确使用Vue.js。

  • 首先,如果搜索结果不可用,我需要隐藏搜索结果。
  • 我的第二个问题是我无法在需要的地方使用变量。

P.S。哦,我忘记了,我需要删除div和' li之间的空格。 sorry, I haven't access to post images because my reputation is low
我将我的代码放在此处:https://jsfiddle.net/4r2oqz2x/

1 个答案:

答案 0 :(得分:0)

你的行

            <a href={{ searchResult.href }}><img src={{ searchResult.img }}>

应该是

           <a :href="searchResult.href"><img :src="searchResult.img">

请参阅How to solve Interpolation inside attributes has been removed. Use v-bind or the colon shorthand ? Vue.JS 2