v-select验证在Internet Explorer 11中不起作用

时间:2019-07-04 10:03:27

标签: vue.js v-select

美好的一天,如何使v-select验证在IE 11上正常工作? 我在vue脚本上添加了require('es6-promise').polyfill();,但直到遇到错误无法生成渲染功能。

<v-select :options="books" label="title" v-model="selected">
  <template #search="{attributes, events}">
    <input
      class="vs__search"
      :required="!selected"
      v-bind="attributes"
      v-on="events"
    />
  </template>
</v-select>

enter image description here

1 个答案:

答案 0 :(得分:0)

直接访问插槽并绑定必需的属性即可解决

<v-select :options="books" label="title" v-model="selected">
  <template #search="{attributes, events}">
    <input :required="!selected" aria-label="Search for option" role="combobox" type="search" autocomplete="off" class="vs__search">
  </template>
</v-select>