Home  >  Q&A  >  body text

javascript - Error using v-else-if in vue

<td v-if = 'item.edit && onlyShowInROBOTTYPE '>
    <input type="text" class='form-control'     v-model= 'item.content.prefix'>
</td>
<td v-else-if='onlyShowInROBOTTYPE' >
    {{item.prefix}}
</td>

onlyShowInROBOTTYPE是一个计算属性  返回bool值

提示 vendor.js:32459 [Vue warn]: Failed to resolve directive: else-if.

阿神阿神2663 days ago1308

reply all(1)I'll reply

  • 巴扎黑

    巴扎黑2017-07-05 11:06:54

    Please check whether the Vue version in your node_modules directory is greater than 2.1.0. This feature does not exist in 2.0.x.

    reply
    0
  • Cancelreply